重命名文件 在 MS-DOS 中使用 RENAME 命令

发布于 2024-11-09 14:06:23 字数 649 浏览 0 评论 0原文

我想知道是否有任何方法可以通过解释器 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 技术交流群。

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

发布评论

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

评论(2

メ斷腸人バ 2024-11-16 14:06:23
for %f in (*.mp3) do rename %f author-%f

参考:Microsoft Batch 帮助

for %f in (*.mp3) do rename %f author-%f

REF: Microsoft Batch Help

三月梨花 2024-11-16 14:06:23

命令:

ren filename new_filename

例如,如果我想更改名为 hello.txt 的文件名,那么我将执行以下

ren hello.txt olleh.txt 

Command

ren filename new_filename

for example, if I want to change a filename named hello.txt then I will do this:

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