English 中文(简体)
协助 Windows 批量脚本的编码更改吗?
原标题:Assistance with coding change in Windows batch script?
  • 时间:2012-05-24 08:49:16
  •  标签:
  • batch-file

I have a batch script which unzip and renames each file.
Unfortunately I now need to keep the filename of the zip file it came from.

Example Jazz1.zip now unzips and the outcoming text file becomes 1.Jazz1.zip.txt.
So I want %%F to become %%F - 4- characters.

不幸的是,我希望它是Jazz1.txt

::Setup the stage...
SETLOCAL ENABLEDELAYEDEXPANSION
SET folder=C:PDataSource2_W
SET count=1

::Action
CD "%folder%"
FOR %%F IN ("*.zip") DO (

 "C:Program Files (x86)WinZipwzunzip" %%F
  MOVE *.txt "C:PDataSource2_WTextFiles!count!%%F.txt"
  SET /a count=!count!+1
)
ENDLOCAL
问题回答

我不明白你打算如何处理COUNT变量,我也不理解你如何处理带有多个.TXT文件的ZIP文件。

但我理解您想要每个 ZIP 文件的基名, (名称没有扩展名 ) 。 这很容易 — 只需使用 ~n 修饰符( 命令的 < code> HELP 类型为 ) 来获取更多信息 。

如果 = Jazz1.zip ,那么 产生 Jazz1





相关问题
complex batch replacement linux

I m trying to do some batch replacement for/with a fairly complex pattern So far I find the pattern as: find ( -name *.php -o -name *.html ) -exec grep -i -n hello {} + The string I want ...

How to split a string by spaces in a Windows batch file?

Suppose I have a string "AAA BBB CCC DDD EEE FFF". How can I split the string and retrieve the nth substring, in a batch file? The equivalent in C# would be "AAA BBB CCC DDD EEE FFF".Split()[n]

How to check which Operating System?

How can I check OS version in a batch file or through a vbs in an Windows 2k/2k3 environment ? You know ... Something like ... : "If winver Win2k then ... or if winver Win2k3 then ....

热门标签