与根驱动器无关的副本

发布于 2024-12-02 08:41:28 字数 378 浏览 1 评论 0原文

我想在Windows中编写一个bat文件,它将一些文件复制到当前目录中:

copy C:\Folder1\Folder2\file1.ext .\
copy C:\Folder3\Folder4\Folder5\file2.ext2 .\
...

我希望有以下行为:如果从根驱动器X的路径执行bat,我希望它复制相同的文件(使用相同的路径)来自 X

copy X:\Folder1\Folder2\file1.ext .\
copy X:\Folder3\Folder4\Folder5\file2.ext2 .\
...

我怎样才能实现这一目标?即如何从当前目录获取根驱动器的名称? 希望我的问题很清楚。

I want to write a bat file in windows which would do copy some files into the current directory:

copy C:\Folder1\Folder2\file1.ext .\
copy C:\Folder3\Folder4\Folder5\file2.ext2 .\
...

I would like to have the following behavior: If the bat is executed from a path with root drive X, I want it to copy the same files (with the same paths) from X

copy X:\Folder1\Folder2\file1.ext .\
copy X:\Folder3\Folder4\Folder5\file2.ext2 .\
...

How can I achieve this? i.e. how can I get the root drive's name from the current directory?
Hope my question was clear.

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

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

发布评论

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

评论(2

夏の忆 2024-12-09 08:41:28

你不能简单地省略驱动器号吗? AFAIK 它是可选的, \Folder\Foo 应该是当前驱动器上的有效绝对路径。

Can’t you simply leave out the drive letter? AFAIK it’s optional, \Folder\Foo should be a valid absolute path on the current drive.

缺⑴份安定 2024-12-09 08:41:28

批处理语言的规则是,当你不知道如何做某件事时,它可能会涉及到for

for /F %%I in ("%CD%") do set CURRENT_DRIVE=%%~dI

The rule of batch language is that when you don't know how to do something, it probably involves for.

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