Compare commits

...

1 Commits

Author SHA1 Message Date
serr a351b26372 done 2024-12-07 17:19:30 +03:00
2 changed files with 4 additions and 8 deletions

View File

@ -15,7 +15,6 @@
using namespace std;
namespace fs = filesystem;
// ULONGLONG GetFileSizeOrFolderSize(const std::wstring& path);
wstring replaceBackslashes(const wstring& input);
void folderTraversal(const wstring& path, IWbemServices* pSvc);
void checkFiles(const wstring& path, IWbemServices* pSvc, map<wstring, wstring>& fileMap);

View File

@ -236,14 +236,11 @@ void zipDir(wchar_t* zipDirPath, wchar_t* zipDirArchive, wchar_t** masks) {
WideCharToMultiByte(CP_UTF8, 0, archivePath, -1, cArchivePath, MMAX_PATH, NULL, NULL);
// Проверка на существование архива
zip_t* zipArchive = zip_open(cArchivePath, ZIP_CREATE | ZIP_TRUNCATE, &err);
zip_t* zipArchive = zip_open(cArchivePath, ZIP_CREATE, &err);
if (!zipArchive) {
zipArchive = zip_open(cArchivePath, ZIP_TRUNCATE, &err);
if (!zipArchive) {
//_tprintf(L"Не удалось открыть ZIP файл\n");
addLogMessage(L"ne udalos sozdat zipfile", 228);
return;
}
//_tprintf(L"Не удалось открыть ZIP файл\n");
addLogMessage(L"ne udalos otkrit zipfile", 228);
return;
}
addLogMessage(L"zipfile sozdan, zahodim v _zipDir", 228);
//_tprintf(L"ZIP файл был создан по пути: %s\n", archivePath);