diff --git a/CBZBatchZipExtractor.vcxproj b/CBZBatchZipExtractor.vcxproj index daff675..6c3dc7b 100644 --- a/CBZBatchZipExtractor.vcxproj +++ b/CBZBatchZipExtractor.vcxproj @@ -163,6 +163,9 @@ + + + diff --git a/CBZBatchZipExtractor.vcxproj.filters b/CBZBatchZipExtractor.vcxproj.filters index c19b96e..be84ad0 100644 --- a/CBZBatchZipExtractor.vcxproj.filters +++ b/CBZBatchZipExtractor.vcxproj.filters @@ -35,4 +35,7 @@ + + + \ No newline at end of file diff --git a/CBZBatchZipExtractor/src/ZIPUtil.cpp b/CBZBatchZipExtractor/src/ZIPUtil.cpp index 92faa48..5618356 100644 --- a/CBZBatchZipExtractor/src/ZIPUtil.cpp +++ b/CBZBatchZipExtractor/src/ZIPUtil.cpp @@ -12,7 +12,7 @@ static void zipAllinFolder(const std::string& folderPath, const std::string& zip } file.save(zipPath); - std::filesystem::remove_all(folderPath); + //std::filesystem::remove_all(folderPath); } @@ -24,7 +24,7 @@ static void unzipAllinFolder(const std::string& folderPath, const std::string& z file.extractall(folderPath); - std::filesystem::remove(zipPath); + //std::filesystem::remove(zipPath); } bool convertExtenstions(const std::string& baseDir, const char* oldExt, const char* newExt) @@ -97,7 +97,6 @@ bool unzipAllinDirectory(const std::string& baseDir) PRINTLOG("Folder Extracted!!"); } - //folderList.emplace_back(); } PRINTLOG("Finished Extracting!!\n"); }