From a351b263723319e57449347d11a07dd21b68421d Mon Sep 17 00:00:00 2001 From: serr Date: Sat, 7 Dec 2024 17:19:30 +0300 Subject: [PATCH] done --- 5 СЕМ/БСИТ/2 ЛАБА/WMI.cpp | 1 - .../2 ЛАБА/{test_libzip_library.c => service.c} | 11 ++++------- 2 files changed, 4 insertions(+), 8 deletions(-) rename 5 СЕМ/БСИТ/2 ЛАБА/{test_libzip_library.c => service.c} (98%) diff --git a/5 СЕМ/БСИТ/2 ЛАБА/WMI.cpp b/5 СЕМ/БСИТ/2 ЛАБА/WMI.cpp index b6a21fc..3261c3d 100644 --- a/5 СЕМ/БСИТ/2 ЛАБА/WMI.cpp +++ b/5 СЕМ/БСИТ/2 ЛАБА/WMI.cpp @@ -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& fileMap); diff --git a/5 СЕМ/БСИТ/2 ЛАБА/test_libzip_library.c b/5 СЕМ/БСИТ/2 ЛАБА/service.c similarity index 98% rename from 5 СЕМ/БСИТ/2 ЛАБА/test_libzip_library.c rename to 5 СЕМ/БСИТ/2 ЛАБА/service.c index 48082a6..981ceac 100644 --- a/5 СЕМ/БСИТ/2 ЛАБА/test_libzip_library.c +++ b/5 СЕМ/БСИТ/2 ЛАБА/service.c @@ -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);