Share

7-Zip

Subscribe

Extracting zips with zip name as directory

You are viewing a single message from this topic. View all messages.

  1. 2009-11-06 18:31:48 UTC
    CD /D "C:\Documents and Settings\Steve\Desktop\Visual Basic Stuff"
    
    FOR %I IN (*.7z) DO 7z x -o".\unzip3\%~nI" "%I"
    

    To use in a script - double up the percent signs.

    FOR %%I IN (*.7z) DO 7z x -o".\unzip3\%%~nI" "%%I"
    
< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.