How do I create a 7z file that had only files created after a specified date in it, using the command line?

link|improve this question
Depends on the OS. – Nifle Dec 20 '11 at 13:48
1  
I don't think you can do this from 7z directly. You could use xcopy with the /d: parameter to copy the files to a folder and then use 7z with that folder. (assuming you are on windows) – myotherme Dec 20 '11 at 13:51
feedback

1 Answer

You'd use a batch file that selects the files based on whatever criteria you wish, and then calls the 7z command line utility to compress these files as desired.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.