From 2ef8ab0df6c94be6bf9864652d8ed48741973955 Mon Sep 17 00:00:00 2001 From: Juno Kim Date: Mon, 31 Aug 2026 16:54:46 +0900 Subject: [PATCH] clean up files --- .gitignore | 1 + MyZip.vcxproj | 10 +++++----- MyZip.vcxproj.filters | 10 +++++----- {Target_Dir => TestFiles/Target_Dir}/Main_Text.txt | 0 .../Target_Dir}/Sub_Dir_1/Sub_Text1.txt | 0 Target_File.txt => TestFiles/Target_File.txt | 0 CRC.h => src/CRC.h | 0 MyZip.cpp => src/MyZip.cpp | 0 MyZip.h => src/MyZip.h | 4 ++-- ZipDefine.h => src/ZipDefine.h | 0 main.cpp => src/main.cpp | 0 11 files changed, 13 insertions(+), 12 deletions(-) rename {Target_Dir => TestFiles/Target_Dir}/Main_Text.txt (100%) rename {Target_Dir => TestFiles/Target_Dir}/Sub_Dir_1/Sub_Text1.txt (100%) rename Target_File.txt => TestFiles/Target_File.txt (100%) rename CRC.h => src/CRC.h (100%) rename MyZip.cpp => src/MyZip.cpp (100%) rename MyZip.h => src/MyZip.h (94%) rename ZipDefine.h => src/ZipDefine.h (100%) rename main.cpp => src/main.cpp (100%) diff --git a/.gitignore b/.gitignore index 349260f..076209e 100644 --- a/.gitignore +++ b/.gitignore @@ -74,4 +74,5 @@ ipch/ # Zip Foramt Test Test* +!TestFiles *.zip \ No newline at end of file diff --git a/MyZip.vcxproj b/MyZip.vcxproj index 6b436d4..d80a53b 100644 --- a/MyZip.vcxproj +++ b/MyZip.vcxproj @@ -129,13 +129,13 @@ - - + + - - - + + + diff --git a/MyZip.vcxproj.filters b/MyZip.vcxproj.filters index 4812474..84f1cb6 100644 --- a/MyZip.vcxproj.filters +++ b/MyZip.vcxproj.filters @@ -15,21 +15,21 @@ - + 소스 파일 - + 소스 파일 - + 헤더 파일 - + 헤더 파일 - + 헤더 파일 diff --git a/Target_Dir/Main_Text.txt b/TestFiles/Target_Dir/Main_Text.txt similarity index 100% rename from Target_Dir/Main_Text.txt rename to TestFiles/Target_Dir/Main_Text.txt diff --git a/Target_Dir/Sub_Dir_1/Sub_Text1.txt b/TestFiles/Target_Dir/Sub_Dir_1/Sub_Text1.txt similarity index 100% rename from Target_Dir/Sub_Dir_1/Sub_Text1.txt rename to TestFiles/Target_Dir/Sub_Dir_1/Sub_Text1.txt diff --git a/Target_File.txt b/TestFiles/Target_File.txt similarity index 100% rename from Target_File.txt rename to TestFiles/Target_File.txt diff --git a/CRC.h b/src/CRC.h similarity index 100% rename from CRC.h rename to src/CRC.h diff --git a/MyZip.cpp b/src/MyZip.cpp similarity index 100% rename from MyZip.cpp rename to src/MyZip.cpp diff --git a/MyZip.h b/src/MyZip.h similarity index 94% rename from MyZip.h rename to src/MyZip.h index ad837f0..dae6e8c 100644 --- a/MyZip.h +++ b/src/MyZip.h @@ -7,8 +7,8 @@ #include "ZipDefine.h" #include "CRC.h" -#define INPUT_FILE_NAME "Target_File.txt" -#define INPUT_DIR_NAME "Target_Dir" +#define INPUT_FILE_NAME "TestFiles/Target_File.txt" +#define INPUT_DIR_NAME "TestFiles/Target_Dir" #define OUTPUT_FILE_NAME "Test_Out.zip" class MyZip diff --git a/ZipDefine.h b/src/ZipDefine.h similarity index 100% rename from ZipDefine.h rename to src/ZipDefine.h diff --git a/main.cpp b/src/main.cpp similarity index 100% rename from main.cpp rename to src/main.cpp