当前位置:网站首页>Batch modify specified character file name bat script
Batch modify specified character file name bat script
2022-06-28 17:12:00 【flymore96】
@echo off
set /p str1= Please enter the file to replace ( Folder ) Name string ( Replaceable spaces ):
set /p str2= Please enter the replaced file ( Folder ) Name string ( Enter directly if deleted ):
echo.
echo In operation , Please wait a moment ……
for /f "delims=" %%a in ('dir /s /b ^|sort /+65535') do (
if "%%~nxa" neq "%~nx0" (
set "file=%%a"
set "name=%%~na"
set "extension=%%~xa"
call set "name=%%name:%str1%=%str2%%%"
setlocal enabledelayedexpansion
ren "!file!" "!name!!extension!" 2>nul
endlocal
)
)
exit
Create directly under the file to be modified .bat file , Put the above code in a file , Double click execute .
Reprint :https://blog.csdn.net/weixin_43042683/article/details/108453639
Actually measured feasible .
边栏推荐
- Metaq installation deployment document
- AUTOSAR software development training
- IP problem occurs when a virtual system is cloned in VirtualBox
- R 编程语言 - 简介
- 【TcaplusDB知识库】WebClient用户如何读取和修改数据
- Gestion des journaux sauvegarde et récupération des journaux dans MySQL
- Batchnorm2d principle, function and explanation of batchnorm2d function parameters in pytorch
- 【TcaplusDB知识库】批量复制游戏区
- 55. maximum sum of continuous subarrays
- FS2K人脸素描属性识别
猜你喜欢
随机推荐
How to log in to your WordPress admin dashboard
【每日3题(1)】字符串中第二大的数字
【TcaplusDB】祝大家端午安康!
MySQL中的日志管理 日志備份與恢複
如何备份 WordPress 数据库
使用Karmada实现Helm应用的跨集群部署
Sum of factor numbers of interval product
【每日3题(2)】最大升序子数组和
Discrete mathematics single shot, full shot and double shot
MySQL高可用之MHA(一不小心和我的青春擦肩而過)
MySQL high availability MHA (accidentally passed my youth)
From five capabilities to "1+5+n", Huawei makes the transformation of government and enterprises more stable
[daily 3 questions (2)] maximum ascending subarray sum
Tacacs+服务器部署
如何让你的 WordPress 网站更安全
「杰伦熊」暴跌96.6% 明星带货NFT为何遇冷?
In rhel6.4, cacti+spine monitoring host is used to send email alarm
[daily 3 questions (1)] the second largest number in the string
logback 日志输出格式
After the first failure, AMEC rushed to the Hong Kong stock exchange for the second time, and the financial principal changed frequently








