抓取文件名进行操作


-1

类似我的要求在这里

我正在寻找一种方法来获取编号文件的名称,并将其用于批处理脚本中的其他位置。

例如,在一个文件夹中会有一个名为159的文件,我需要cmd.exe获取该数字'159',以便我可以用它做一些算法(例如159 + %p%159<%p%等等)

谢谢

Answers:


0

如果只有一个(引用:“一个文件”)文件:

for /f %%a in ('dir /b') do @set name=%%a

将变量设置name为批处理脚本中该文件的全名。

它循环通过命令输出(dir /b)。


1
是的,文件夹中只有一个文件,您的命令就像魅力一样。成功地集成到我的批处理文件中,谢谢你
大卫
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.