Update FtpHelper.java

This commit is contained in:
Zhang Xian 2021-09-09 22:40:51 +08:00 committed by GitHub
parent bfabe29127
commit 980fe38fe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,4 +104,15 @@ public abstract class FtpHelper {
return sourceAllFiles;
}
/**
*
* @Title: deleteFile
* @Description: 删除相应的文件
* @param @param filePath 文件路径
* @param @return
* @return boolean
* @throws
*/
public abstract boolean deleteFile(String filePath);
}