使用命令提示符编辑文件名

发布于 2024-12-27 22:24:17 字数 615 浏览 1 评论 0原文

我的一个文件夹中有很多文件,我在某些文件中输入了错误的名称 例如:

文件名如下:abcefxyz.txt,而我想输入abcdevwxyz.txt 也就是说,我只是想用 devw 替换文件名中的 ef 字符串 我如何使用命令提示符执行此操作? 请帮助...

  EDITED

我有数千个文件,其名称如下:SomethingLongString_OutdoorGames_DateTime.txt (我想输入)但

意外地在某些文件中,数量可能有数百或数千,我输入了 SomethingLongString_IndoorGame_DateTime.txt

我只是想替换 IndoorGame 字符串文件名带有 OutdoorGame 字符串(准确地说)。

这里文件名中的 SomethingLongStringDateTime 字符串对于不同的文件是不同的。

我认为这个例子更有助于理解我的问题......

I have a number of files in a folder, by mistaken in some of files I enter the wrong name
for example :

filename like : abcefxyz.txt while I suppose to enter abcdevwxyz.txt
that is I simply want to replace ef string in filename with devw
how can I do this using command prompt?
please help...

  EDITED

I have a thousands of files whose name like : SomethingLongString_OutdoorGames_DateTime.txt
(which I suppose to enter) but

Accidently in some of files, may be hundreds or thousands in number, I have enter SomethingLongString_IndoorGame_DateTime.txt

I simply want to replace IndoorGame string in filename with OutdoorGamestring (precisely saying).

Here SomethingLongString and DateTime strings in filename is different for different file.

I think this example is more helpful to understand my problem...

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

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

发布评论

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

评论(2

别再吹冷风 2025-01-03 22:24:17

在Windows上使用

我不知道如何用其他字符替换一些字符,但是你可以重命名这样

目录路径>任 abcefxyz.txt abcdevwxyz.txt

on windows use

I dont know how to replace some chars with others,but u can rename this way

dirpath> ren abcefxyz.txt abcdevwxyz.txt

你列表最软的妹 2025-01-03 22:24:17

不知道..如果它们都是 TXT 文件,则将它们隔离在一个文件夹中。
从那里使用高级重命名器到没有扩展名的文件
这样你就可以使用 26 个字母来重命名该组。

CMD 使用将是 Ren A* A(1,2,3,4 等)
或使用旧计算机的 XCOPY a* A..

在批处理中,您可以用于 @ (文件名) do (ren) 语句
这有帮助吗?

DUNNO.. if they are all TXT files then isolate them in a folder.
From there use Advanced Renamer to a file with NO extension
this way you can use 26 letters to rename the bunch.

CMD use would be Ren A* A (1,2,3,4 etc)
or XCOPY a* A using an older computer..

in a batch you could use for @ (filename) do (ren) statements
Would this help?

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