如何在Windows命令行中使用通配符?

发布于 2024-09-13 11:21:21 字数 631 浏览 5 评论 0原文

我有一些动画,它们是这样的:

/OP/
/OP/OP1/
/OP/OP1/OP1.rmvb
/OP/OP2/
/OP/OP2/OP2.rmvb
/OP/OP3/
/OP/OP3/OP3.rmvb /OP/OP4/
/OP/OP4/OP4.rmvb
...以及更多

我想让它像

/OP/
/OP/OP1.rmvb
/OP/OP2.rmvb
/OP/OP3.rmvb
/OP/OP4.rmvb

我尝试过

move \OP\*\*.rmvb \OP

它给了我错误说

文件名、目录名或卷标语法不正确。

我也尝试过

dir \OP\*

这显示了所有文件夹

但是如果我尝试

dir \OP**

它给了我同样的错误。

有人可以帮我吗?非常感谢

I some animations, they are like this:

/OP/
/OP/OP1/
/OP/OP1/OP1.rmvb
/OP/OP2/
/OP/OP2/OP2.rmvb
/OP/OP3/
/OP/OP3/OP3.rmvb
/OP/OP4/
/OP/OP4/OP4.rmvb
...and more

I want to make it like

/OP/
/OP/OP1.rmvb
/OP/OP2.rmvb
/OP/OP3.rmvb
/OP/OP4.rmvb

I tried

move \OP\*\*.rmvb \OP

It gave me error says

The file name, directory name, or volume label syntax is incorrect.

I also tried

dir \OP\*

This shows all the folders

But if I try

dir \OP**

It gave me the same error.

Could anyone please help me?? Thank you very much

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

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

发布评论

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

评论(1

从此见与不见 2024-09-20 11:21:22

这是一个编程问题吗?需要在命令行上执行此操作吗?
否则,我只需执行 Windows 搜索 *.rmvb,然后将结果拖放到您选择的文件夹中...

Is that a programming question? Requiring to do this on the command line?
Otherwise, I would just do a Windows Search *.rmvb, and drag'n'drop the result to the folder of your choice...

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