블로그 이미지
안녕1999

카테고리

전체 (3067)
자바스크립트 (20)
안드로이드 (14)
WebGL (4)
변비 (17)
정치,경제 (35)
C언어,ARM (162)
컴퓨터(PC, Note Book, 윈.. (41)
전자회로, PCB (27)
유머,안웃긴,GIF,동영상 (118)
국부론60 (71)
모듈(PCB) (3)
건강 (2)
FreeCAD (25)
PADS (43)
퇴직,퇴사,구직,취업 활동 (3)
C# (86)
엑셀 (8)
워드 (0)
LabView (6)
레고 (30)
FPGA (0)
Total
Today
Yesterday

달력

« » 2025.1
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

공지사항

최근에 올라온 글

- zip프로그램이 없어도 동작함.(윈도우 압축기능 사용)(장점)

- 지정된 파일이 한개라도 없으면, 압축파일이 생성되지 않음.(단점)

- 7zip보다 느림.(단점)



REM 불필요한 파일 삭제
del /s *.lss
del /s *.srec
del /s *.o
del /s *.crf
del /s *.map
del /s *.dep
del /s *.d
del /s *.afx
del /s *.cache
del /s *.pdb
del /s *.cache
del /s *.Resources.resources
del /s TemporaryGeneratedFile_*.cs
del /s Properties.Resources.Designer.cs.dll
del /s Makefile
del /s *.mk





rem 공백없이

rem 압축할 폴더이름
set f=bbbb

rem 압축된 파일 이름 예) xxx-20200525-14.zip
set zip=aaaaa-%date%-%time:~0,2%.zip

rem 여러파일을 나열할 수 없음. 한번씩 추가
rem powershell에서는 파일이름에 공백이 있는 경우 문제가 된다. '...'추가
powershell Compress-Archive -Path "%f%" -Update -DestinationPath "'%zip%'"

rem 파일이 없다면 zip파일이 삭제된다.(압축파일이 생성되지 않는다면, 확인해보세요)
set f="*.bat"
if exist %f% (
	powershell Compress-Archive -Path %f% -Update -DestinationPath "'%zip%'"
)

set f="*.txt"
if exist %f% (
	powershell Compress-Archive -Path %f% -Update -DestinationPath "'%zip%'"
)

set f="*.bat"
if exist %f% (
	powershell Compress-Archive -Path %f% -Update -DestinationPath "'%zip%'"
)

set f="*.atsln"
if exist %f% (
	powershell Compress-Archive -Path %f% -Update -DestinationPath "'%zip%'"
)

set f="*.sln"
if exist %f% (
	powershell Compress-Archive -Path %f% -Update -DestinationPath "'%zip%'"
)

explorer "%zip%"
copy "%zip%" "\\SERVER\xxxxx\%zip%"
pause

 

Posted by 안녕1999
, |

최근에 달린 댓글

글 보관함