修正目录

nx2024
Matthew 4 months ago
parent ca25f45594
commit 31f172bb99

@ -1219,7 +1219,7 @@ public class MpMasterService extends Service {
if (destPathFile.exists()) {
File dataPath = new File(destPathFile, "data");
if (dataPath.exists()) {
File file = new File(destPathFile, "App.json");
File file = new File(dataPath, "App.json");
if (file.exists()) {
return false;
} else {
@ -1227,6 +1227,7 @@ public class MpMasterService extends Service {
}
} else {
existed = false;
try {
dataPath.mkdirs();
} catch (Exception ex) {

Loading…
Cancel
Save