Exemplo n.º 1
0
 //Another version taking FtpFileInfo and FileInfo
 public bool Download(FTPFileInfo file, FileInfo localFI, bool PermitOverwrite)
 {
     return(this.Download(file.FullName, localFI, PermitOverwrite));
 }
Exemplo n.º 2
0
 //Version taking an FtpFileInfo
 public bool Download(FTPFileInfo file, string localFilename, bool PermitOverwrite)
 {
     return(this.Download(file.FullName, localFilename, PermitOverwrite));
 }