FtpWebRequest ListDirectory does not return hidden files
问题 Using FtpWebRequest to list the contents of a directory; however, it's not showing the hidden files. How do I get it to show the hidden files? FtpWebRequest request = (FtpWebRequest)WebRequest.Create(ftp_root + path); request.Method = WebRequestMethods.Ftp.ListDirectory; FileZilla lists the hidden files correctly so I know the FTP server is returning that data to it. I just need to replicate that with FtpWebRequest . Or use a different library for it. 回答1: The FtpWebRequest which is provided