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
This makes some sense if the intent of deduplication is not to have duplicates, then the files are being locked and php cant see them. The only thing to do is is see if this limitation applies to scandir() and the SPL directory/filesystem family of iterators as well. If so it may not be possible to get a list of them.
The only other choice would be to use exec() and a windows command line sort of hack to see if you can get a list of files and then parse the output. This may be useful
php exec: does not return output
Good luck!