how to fetch a range of files from an FTP server using C#
- by user260076
hello all,
i'm stuck at a point where i am using a wildcard parameter with the FtpWebRequest object as suck
FtpWebRequest reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" + ftpServerIP + "/" + WildCard));
now this works fine, however i now want to fetch a specific range of files.
say the file naming structure is *YYYYMMDD.* and…