no message

This commit is contained in:
2023-11-24 12:48:35 +03:00
parent 8410203495
commit 5626cea52b
3 changed files with 5 additions and 5 deletions

View File

@@ -1562,8 +1562,9 @@ public class db_project_info extends DBObject {
File[] files = project_data.listFiles();
if (files != null) {
for (File file : files) {
System.out.println(file.getAbsolutePath());
if (!file.getName().equalsIgnoreCase("new_project_base.sqlite")) {
FileUtils.forceDelete(file);
Utils.forceDeleteWithCheck(file);
}
}
}

View File

@@ -88,7 +88,9 @@ public class Test extends riDBObject {
db_project_info project = new db_project_info(tempProject);
project.Open();
project.Close();
// UI.Info("clear data for "+project.Home.getAbsolutePath());
project.clearData();
// UI.Info("DONE");
//--
ZipFolderPass zip = new ZipFolderPass();
if (zip.Do(tempProject.getAbsolutePath(), tempArchive.getAbsolutePath())) {