public static bool uploadFile(string fileName, string path) { myFTP ftp = new myFTP(staticVarClass.ftp_Server, staticVarClass.ftp_userName, staticVarClass.ftp_password); return(ftp.upload(fileName, path)); }
public static bool deleteFile(string fileName) { myFTP ftp = new myFTP(staticVarClass.ftp_Server, staticVarClass.ftp_userName, staticVarClass.ftp_password); return(ftp.delete(fileName)); }