如何迭代并检查 MS-DOS 目录中文件是否存在

发布于 2024-11-17 12:52:57 字数 415 浏览 3 评论 0原文

我希望能够迭代目录中的所有文件。对于我迭代的每个文件,我想检查该文件是否存在于另一个目录中。然而我尝试的一切都失败了。截至目前我有以下代码。

set base1="c:\documents and settings\pp57542\My Documents\Oracle Readings"
set send1="L:\Documents\Expert Book\Expert Book"

title Backup Script for Startup Routine Step 1
FOR /r %base1% %%c in (*.pdf) DO (if not exist %send1%\%%~nc (echo "Did not exist" & @xcopy %%c %send1% /Y /I /S))
pause

我哪里错了?

I would like to be able to itereate through all files in a directory. For each file I iterate over I would like to check to see if that file exists in another directory. However everything I try fails. As of right now I have the following code.

set base1="c:\documents and settings\pp57542\My Documents\Oracle Readings"
set send1="L:\Documents\Expert Book\Expert Book"

title Backup Script for Startup Routine Step 1
FOR /r %base1% %%c in (*.pdf) DO (if not exist %send1%\%%~nc (echo "Did not exist" & @xcopy %%c %send1% /Y /I /S))
pause

Where am I going wrong?

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

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

发布评论

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

评论(1

岁吢 2024-11-24 12:52:57

你相信你是一个角色吗? %%~nxc 中的 x 代表扩展名 (.pdf)。

FOR /r %base1% %%c in (*.pdf) DO (if not exist %send1%\%%~nxc (echo "Did not exist" & @xcopy %%c %send1% /Y /I /S))

希望这对你有用。

Would you believe you were one character off? x in %%~nxc stands for the extension (.pdf).

FOR /r %base1% %%c in (*.pdf) DO (if not exist %send1%\%%~nxc (echo "Did not exist" & @xcopy %%c %send1% /Y /I /S))

Hope that works for you.

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