Re: WinSCP .NET Assembly cannot download Dot files from Serv-U
One possible workaround is doing something likeGetFiles("/.ignor[e]", "xxx")
- As the parameter is file mask (although it can match a single file only), WinSCP should useMLSD
orLIST
(to retrieve list of files) instead ofMLST
(to retrieve attributes of the specific file).
Thanks very much!
Use your method
GetFiles("/[.]ignore", "xxx")
, I solve this problem.