From ba500120b4c834f04501d07ab6af36b7c2272608 Mon Sep 17 00:00:00 2001 From: liuguijing <1440265357@qq.com> Date: Tue, 13 May 2025 15:10:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=BF=90=E7=BB=B4=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E6=96=87=E4=BB=B6=E6=97=B6=20=20=20=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=A4=B9=E4=B8=8D=E5=88=A0=E9=99=A4=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mpmaster/src/main/java/com/xypower/mpmaster/AppMaster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mpmaster/src/main/java/com/xypower/mpmaster/AppMaster.java b/mpmaster/src/main/java/com/xypower/mpmaster/AppMaster.java index 7fe1f20b..4592d43d 100644 --- a/mpmaster/src/main/java/com/xypower/mpmaster/AppMaster.java +++ b/mpmaster/src/main/java/com/xypower/mpmaster/AppMaster.java @@ -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) {