I have part of code which download file from ftp server using FileStream class:
FileStream outputStream = new FileStream(filePath +
"\\" + fileName, FileMode.Create);
reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri("ftp://" +
ftpServerIP + "/" + fileName));
reqFTP.Method = WebRequestMethods.Ftp.DownloadFile;
And when i downloaded this file i have FileStream object, which has SafeFileHandle property and probably by this property i may to change date creation of this file, if any have examples for this operation or some links please write in answers
You can use;
You will have to do that once you have saved file to directory