Hey there lovely stackoverflow people!
I have got directories which contain brackets in the names. i.e. "dir_123[[email protected]]"
Within that dirs there are .tif files.
What I do is counting the Tif files. On my Mac I did that with MAMP and it worked great:
$anz = count(glob(str_replace("[", "\[", "dir_123[[email protected]]/*.tif")));
On my Windows machine running XAMPP it won't work because of that brackets:
$anz = count(glob(str_replace("[", "\[", "dir_123[[email protected]]\\*.tif")));
How can I get my XAMPP Server to read that directories?
thx, Max