在folder1
我有文件的列表:
file1.exe
ahahdf.exe
ahdfkqkq.exe
我想运行一个脚本,并使其创建文件夹2下列文件:
file1.zip
ahahdf.zip
ahdfkqkq.zip
我尝试:
for %%f in (*.*) do "c:\program files\7-zip\7z.exe" a %%f.zip %%f
这将创建file1.exe.zip
,......但我需要file1.zip
,...(不.exe
扩展名)。
我怎样才能做到这一点?