done
parent
be34ebba76
commit
a351b26372
|
@ -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);
|
||||
|
|
|
@ -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);
|
Loading…
Reference in New Issue