标题: [文本处理] [已解决]批处理如何替换图片文件名的符号 [打印本页]
作者: liaoguinan 时间: 2023-9-5 22:53 标题: [已解决]批处理如何替换图片文件名的符号
如何遍历多个文件夹下的图片名称把英文括号改成中文括号
旧文件名:1.0.0.0-000(小强) 新文件名:1.0.0.0-000(小强)
作者: 77七 时间: 2023-9-5 23:44
- @echo off
- rem 批处理保存为ansi编码格式
- for /f "delims=" %%i in ('dir /b /s /a-d *.jp*g *.png') do (
- set fn=%%i
- set nx=%%~nxi
- setlocal enabledelayedexpansion
- set nx=!nx:(=(!
- ren "!fn!" "!nx:)=)!"
- endlocal
- )
- pause
复制代码
作者: Nsqs 时间: 2023-9-6 00:17
本帖最后由 Nsqs 于 2023-9-6 00:31 编辑
- # >nul&cls&powershell -noprofile -executionpolicy bypass "gc '%~f0'|out-string|iex" & exit
- function re([Parameter(ValueFromPipeline)]$str,$old,$new){
- $old=$old.ToCharArray();$new=$new.ToCharArray()
- 0..$old.count|%{$str=$str.replace($old[$_],$new[$_])};$str
- }
- dir *.jpg,*.png -File|?{$_ -match '[()]'}|%{ren $_ ($_.Name|re -old '()' -new '()')}
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |