修改运维删除文件时 文件夹不删除的问题

lowmem
liuguijing 1 month ago
parent 6b8e477ed1
commit ba500120b4

@ -860,7 +860,7 @@ public class AppMaster {
private void deleteFile(String path) {
try {
File file = new File(path);
if (file.exists() && file.isFile()) {
if (file.exists()) {
file.delete();
}
} catch (Exception ex) {

Loading…
Cancel
Save