php “glob” and data-deduplication?

前端 未结 4 2265
无人及你
无人及你 2021-02-12 17:45

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:53

    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.

提交回复
热议问题