Цитата kmc:
Честно говоря не пойму куда этот код вставлять-имеется ввиду после как строчек »
|
Примеры есть непосредственно в справке
7-Zip:
читать дальше »
Цитата -r (Recurse subdirectories) switch:
…
Examples
Код:
7z l archive.zip *.doc -r-
lists all *.doc files that belong to the archived root directory in the archive.zip archive.
Код:
7z a -tzip archive.zip -r src\*.cpp src\*.h
adds all *.cpp and *.h files from directory src and all it's subdirectories to the archive.zip archive.
Код:
7z a archive.7z folder1\
adds all files from directory folder1 and all it's subdirectories to the archive.7z archive.
Код:
7z a archive.7z -r folder2\
searches all folder2 directories in all subdirectories, and adds them (including all subdirectories) to the archive.7z archive.
…
|