尝试打印出文件的8dot3名称,当我在命令提示符中粘贴该行时它会起作用,但是当我从批处理文件中运行它时,它会起作用。
粘贴后的结果:
D:\tmp>cmd /e:on /c for %A in (8088_othello.com) do @echo %~nxsA
8088_O~1.COM
批处理文件的结果:
D:\tmp>lfn.bat
D:\tmp>cmd /e:on /c for ~nxsA
~nxsA was unexpected at this time.
还需要什么才能使其在批处理文件中运行?
答案 0 :(得分:5)
你需要转义%是批处理文件
只需输入 cmd / e:on / c for %% A in(8088_othello.com)do @echo %% ~nxsA