I have a batch script that runs 7zip and allows me to zip all the files in one folder. I only want to zip files that have a Date Modified of 2010 or another date of my choosing. I want to delete the files after I get them archived into a zip folder. This is my logic. Find files that are from 2012 and archive those files into a folder called 2012. Zip the folder and delete the files. 0
This is what I have so far.
@ECHO OFF
REM This sets name of the zip file
Set choice=
set /p choice=What is the year of the files?
PAUSE
REM This sets the path of the file
Set path=
set /p path=What is the path of the files on C:\'path'\?
REM Use 7Zip to Zip files in folder c:\path and place the zip archive in C:\path
ECHO.
ECHO Zipping all files in C:\%path% and moving archive to c:\%path%
ECHO.
PAUSE
C:\7z a -tzip "C:\%path%\%choice%.zip" "C:\%path%\*.*" -mx5
ECHO.
PAUSE
ECHO Would you like to Delete the files in orginal folder?
DEL "C:\%path%\*.*"
PAUSE
ECHO File is now zipped
set /p path=line you have there will make Windows forget where to find some of its executables, at least until it's rebooted. Best not to recycle variables that already have another purpose. – rojo Jan 28 at 19:45