@echo off
REM カレントディレクトリ内のすべてのzipファイルに対してループ
for %%i in (*.zip) do (
REM zipファイルを展開
powershell -command "Expand-Archive -Path '%%i' -DestinationPath '%%~ni'"
REM zipファイルを削除
del "%%i"
)
exit
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme