DOS:删除空格

发布于 2024-09-13 13:32:18 字数 203 浏览 10 评论 0原文

我正在执行下面的脚本,但它不起作用,因为之间有空格。下面是脚本:

move C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg D:\Archive\

我们怎样才能消除 & 之间的空格?确保系统能够理解,以便将所有 jpg 文件移动到 D:\Archive

Regards, 轨道

I am executing the below script, but it is not working as there are spaces in between. Below is the script:

move C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg D:\Archive\

How can we eliminate the spaces in between & make sure the system understands so that it moved all jpg files to D:\Archive

Regards,
Orbit

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

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

发布评论

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

评论(3

桃扇骨 2024-09-20 13:32:18

将文件名引起来。这向命令行解析器表明引号之间的所有内容都是单个标记

move "C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg" "D:\Archive\"

Place quotes around the file names. That indications to the command line parser that everything between the quotes is a single token

move "C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg" "D:\Archive\"
萌化 2024-09-20 13:32:18

将长文件名用双引号引起来。

move "C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg" "D:\Archive\"

Wrap long filenames in double quotes.

move "C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg" "D:\Archive\"
苄①跕圉湢 2024-09-20 13:32:18

有关更多 DOS 批处理文件命令和语法,http://www.dostips.com/ 有一个相当不错的列表和很多例子。

作为替代方案,您可以使用 8.3 表示并删除空格(尽管我更喜欢引号和空格)。

move C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg D:\Archive\

move C:\abc\d\System~1\Tables~1\LogFiles*.jpg D:\Archive\

如果您有其他类似命名的目录,~? 可能会有所不同。

For more DOS batch file commands and syntax, http://www.dostips.com/ has a pretty good list and lots of examples.

As an alternative, you could use the 8.3 representation and remove the spaces (though I prefer the quotes and spaces).

move C:\abc\d\System Table\Table Six (Top)\LogFiles*.jpg D:\Archive\

move C:\abc\d\System~1\Tables~1\LogFiles*.jpg D:\Archive\

If you have other similarly named directories, the ~? could be different.

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