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

lowmem
liuguijing 1 month ago
parent 6b8e477ed1
commit ba500120b4

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

Loading…
Cancel
Save