如何在Windows命令行中使用通配符?
我有一些动画,它们是这样的:
/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个编程问题吗?需要在命令行上执行此操作吗?
否则,我只需执行 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...