php “glob” and data-deduplication?

前端 未结 4 787
逝去的感伤
逝去的感伤 2021-02-12 17:14

I have a php-application which is (per request) scanning for the existance of some files. (on a network share)

I\'m using glob for this, cause usually i jus

4条回答
  •  盖世英雄少女心
    2021-02-12 17:59

    Did you try

    $files = glob('{,.}*', GLOB_BRACE);
    

    It might be possible that the data de-dupe feature is keeping the opened file as a hidden file.

提交回复
热议问题