如何在 Windows 批处理中处理文件夹和/或文件名中的 & 符号? (我无法控制文件或文件夹名称)

发布于 2025-01-10 03:22:29 字数 1469 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

皇甫轩 2025-01-17 03:22:29

只是一些提示:

@ 表示“不要将命令回显到控制台”。命令回显由echo onecho off 控制。 Echo 默认情况下ON,因此命令@echo off 表示“关闭echo,但不< code>echo 将此行发送到控制台。

因此,一旦执行 @echo off ,就无需在命令之前添加 @

。第三个 echo 语句,您已指定targAtname,未定义,因此报告没有显示该项目的

!,而是 % 。意味着“变量在运行时的值,而不是在解析时的值”,并且实际上仅适用于调用更改变量的循环的语句,例如 for 循环,但是正如aschipfl所指出的,它很有用克服 echo 语句中的特殊字符影响

让我们检查一下批处理对于一次分配的作用:

@set TARGETPATH=%~p1

批处理替换第一个stpath 部分。 > %~p1 的参数,因此实际执行的命令是

@set TARGETPATH=A & B\

A 分配给 targetpath,然后尝试执行 B\< /code> 因此出现错误消息。

在字符串赋值上,使用语法

set "TARGETPATH=%~p1"

引号可以防止命令行上出现杂散尾随空格,并且还可以解决大多数特殊字符问题。

顺便说一句:

set target

echo名称以target开头的所有变量

Just a few tips:

@ means "do not echo the command to the console". Command-echoing is controlled by echo on and echo off. Echo is ON by default, so the command @echo off means "Turn echo off, but do not echo this line to the console.`

Hence, once an @echo off is executed, there is no need to put @ before commands.

In your third echo statement, you have specified targAtname, which is undefined, hence the report shows nothing for that item.

! in place of % means "the value of the variable as it is at run-time, not at parse-time" and is really only applicable where a statement invokes a loop which changes the variable, like a for loop, but as aschipfl has pointed out, it comes in useful to overcome the special-characters effects in an echo statement.

Let's examine what batch does for one assignment:

@set TARGETPATH=%~p1

Batch substitutes the path part of the 1st parameter for %~p1 so the actual command executed is

@set TARGETPATH=A & B\

hence it assigns A to targetpath and then attempts to execute B\ hence the error message.

On a string assignment, it is standard practice on SO to use the syntax

set "TARGETPATH=%~p1"

The quotes protect against stray trailing spaces on the command line, and will also cure most problems with special characters.

BTW:

set target

will echo all variables whose names start target

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文