我想我正在寻找在 DOS 批处理文件中使用的 ESC 字符

发布于 2024-09-17 21:12:53 字数 225 浏览 8 评论 0原文

让我困惑的代码:

set CLEAN=\Users\%USERNAME%\Documents\Directory One\Sub Directory\30% Dalton.txt
IF EXIST %CLEAN% echo "It Works"

此代码永远不会工作,因为文件名有一个“%”字符

有没有办法解决这个问题并产生 Echo“It Works”

The code that is confusing me:

set CLEAN=\Users\%USERNAME%\Documents\Directory One\Sub Directory\30% Dalton.txt
IF EXIST %CLEAN% echo "It Works"

This code will never work because the file name has a " % " char

Is there a way to get around this and produce the Echo "It Works"

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

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

发布评论

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

评论(3

七堇年 2024-09-24 21:12:53
set CLEAN=\Users\%USERNAME%\Documents\Directory One\Sub Directory\30%% Dalton.txt
IF EXIST "%CLEAN%" echo "It Works"
set CLEAN=\Users\%USERNAME%\Documents\Directory One\Sub Directory\30%% Dalton.txt
IF EXIST "%CLEAN%" echo "It Works"
撑一把青伞 2024-09-24 21:12:53

使用双% 符号。快速谷歌让我找到了答案。

http://www.robvanderwoude.com/escapechars.php

set CLEAN=\Users\%USERNAME%\Documents\Directory One\Sub Directory\30%% Dalton.txt
IF EXIST %CLEAN% echo "It Works"

Use a double % sign. A quick Google led me to the answer.

http://www.robvanderwoude.com/escapechars.php

set CLEAN=\Users\%USERNAME%\Documents\Directory One\Sub Directory\30%% Dalton.txt
IF EXIST %CLEAN% echo "It Works"
尽揽少女心 2024-09-24 21:12:53

%%

逃跑

Do

%%

to escape

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