Search code examples
.netftpdirectoryhiddenchilkat

Show whole FTP directory


My application don't finde some files in FTP Directorys.

I checked the folder with the FTP Client WinSCP which shows me every file. The files and folders, which are hidden, starts with a dot ..

I'm using Chilkat for FTP Connection, but tried the same with standard .NET functions. They are returning that the folder is empty.

WinSCP shows:

WinSCP

My Application shows:

My Application

What's the right way to show everything?

Thanks for your help


Solution

  • With Steve's help i solved it.

    I have set the Chilkat FTP ListPattern property to "-a" and every file is shown now.

    (This only works with Unix-based systems)

    Thanks Steve