Symfony finder; Ignore point files do not work with FTP address

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?

+4
source share
1 answer

, , , Finder + FTP.

FTP , :

Windows, , Linux.

:

+1

Source: https://habr.com/ru/post/1683534/


All Articles