重命名文件 在 MS-DOS 中使用 RENAME 命令
我想知道是否有任何方法可以通过解释器 MS-DOS 命令在 Windows 中重命名文件,如下所示:
假设我有一个包含以下文件的目录:
file1.mp3
file2.mp3
file3.mp3
.
.
.
filen.mp3
并且我想重命名为
author-file1.mp3
author-file2.mp3
author-file3.mp3
.
.
.
author-filen.mp3
其中 n 是歌曲数,所有歌曲的作者都是相同的。
我读到了有关在 MS-DOS 中重命名文件的命令,更具体地说是 RENAME,但我无法创建正确的语法来执行此操作。
我有一个想法可能是这样的:
<代码>重命名*。 mp3 作者-
。 mp3
我不知道如何指定 MS-DOS 将名称放在每个 mp3 文件上方,以便它们如下:
author-file1.mp3
author-file2.mp3
author-file3.mp3
.
.
.
author-filen.mp3
我希望有人可以帮助我,
I want to know if there is any way to rename files in windows through the interpreter MS-DOS command as follows:
Suppose I have a directory with files in the following way:
file1.mp3
file2.mp3
file3.mp3
.
.
.
filen.mp3
and I want to rename as
author-file1.mp3
author-file2.mp3
author-file3.mp3
.
.
.
author-filen.mp3
where n is the number of songs and author is the same for all songs.
I read about the command to rename files in MS-DOS, more specifically RENAME but I can not create the proper syntax to do so.
I have an idea that might be something like:
RENAME *. mp3 author-<song_name>. mp3
I don't know how to specify MS-DOS to place the names above each of the mp3 files so that they are as:
author-file1.mp3
author-file2.mp3
author-file3.mp3
.
.
.
author-filen.mp3
I hope someone can help me,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参考:Microsoft Batch 帮助
REF: Microsoft Batch Help
命令:
例如,如果我想更改名为
hello.txt
的文件名,那么我将执行以下Command
for example, if I want to change a filename named
hello.txt
then I will do this: