Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
serr | a351b26372 |
|
@ -15,7 +15,6 @@
|
||||||
using namespace std;
|
using namespace std;
|
||||||
namespace fs = filesystem;
|
namespace fs = filesystem;
|
||||||
|
|
||||||
// ULONGLONG GetFileSizeOrFolderSize(const std::wstring& path);
|
|
||||||
wstring replaceBackslashes(const wstring& input);
|
wstring replaceBackslashes(const wstring& input);
|
||||||
void folderTraversal(const wstring& path, IWbemServices* pSvc);
|
void folderTraversal(const wstring& path, IWbemServices* pSvc);
|
||||||
void checkFiles(const wstring& path, IWbemServices* pSvc, map<wstring, wstring>& fileMap);
|
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);
|
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) {
|
if (!zipArchive) {
|
||||||
zipArchive = zip_open(cArchivePath, ZIP_TRUNCATE, &err);
|
//_tprintf(L"Не удалось открыть ZIP файл\n");
|
||||||
if (!zipArchive) {
|
addLogMessage(L"ne udalos otkrit zipfile", 228);
|
||||||
//_tprintf(L"Не удалось открыть ZIP файл\n");
|
return;
|
||||||
addLogMessage(L"ne udalos sozdat zipfile", 228);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
addLogMessage(L"zipfile sozdan, zahodim v _zipDir", 228);
|
addLogMessage(L"zipfile sozdan, zahodim v _zipDir", 228);
|
||||||
//_tprintf(L"ZIP файл был создан по пути: %s\n", archivePath);
|
//_tprintf(L"ZIP файл был создан по пути: %s\n", archivePath);
|
Loading…
Reference in New Issue