0 votes
by (170 points)
edited

Sorry i can Found a solution, it's possible to list hidden files. with FTP.Net

Applies to: Rebex FTP/SSL

2 Answers

+1 vote
by (144k points)
edited

Try enabling ForceListHiddenFiles option before calling GetList, GetRawList or GetNameList method.

C#:

Ftp client = new Ftp();
client.Options |= FtpOptions.ForceListHiddenFiles;
...

VB.NET:

Dim client As New Ftp()
client.Options = client.Options Or FtpOptions.ForceListHiddenFiles
...
0 votes
by (170 points)
edited

Thanks that works fine. Robert

...