在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
扩展名)。
我怎样才能做到这一点?