I use Symfony as a Finder component . I want to get a file whose name starts with a period (.file.txt), and this file is on another server.
If I do this: -
$finder
->files()
->ignoreDotFiles(false)
->in("ftp://user:pass@exmple.example:/myDir/")
;
- I do not receive any file, but if I rename the file and delete the point ("file.txt"), then I can find it.
- If I try to find files that start with a dot on my local computer, then it finds it well. Like here
So my question is: why does the method ignoreDotsFilenot work when is the ftp address?
Oscar source
share