批处理删除文件名中的指定文字?
如何删除文件名中某几个字?用bat批处理命令@echooff&setlocalenabledelayedexpansionfor/f"delims="%%1in('dir...
如何删除文件名中某几个字?用bat批处理命令
@echo off& setlocal enabledelayedexpansion
for /f "delims=" %%1 in ('dir /a /b') do (set wind=%%1
ren "%%~1" "!wind:替换的文字=!"),我尝试了一下,只能删除doc文档名称中的符号,例如-,无法删除汉字。 展开
@echo off& setlocal enabledelayedexpansion
for /f "delims=" %%1 in ('dir /a /b') do (set wind=%%1
ren "%%~1" "!wind:替换的文字=!"),我尝试了一下,只能删除doc文档名称中的符号,例如-,无法删除汉字。 展开
1个回答
展开全部
不清楚你的实际文件/情况,仅以问题中的说明及猜测为据
复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件放一起运行
复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件放一起运行
<# :
cls
@echo off
rem 删除文件名称中的指定字符串/文字
set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%@% %z%
cd /d "%~dp0"
powershell -NoProfile -ExecutionPolicy bypass "Invoke-Command -ScriptBlock ([ScriptBlock]::Create([IO.File]::ReadAllText('%~f0',[Text.Encoding]::Default))) -Args '%~dp0'"
echo;%#% +%$%%$%/%@% %z%
pause
exit
#>
$oldword="要删除的字符串";
$newword="";
$path=$args[0].trimend('\');
$files=@(dir -liter $path|?{('.bat' -ne $_.Extension) -and ($_ -is [System.IO.FileInfo])});
for($i=0;$i -lt $files.length;$i++){
$oldbase=$files[$i].BaseName;
$newbase=$oldbase.replace($oldword, $newword);
if(($newbase -ne '') -and ($newbase -ne $oldbase)){
$newname=$newbase+$files[$i].Extension;
$newfile=$files[$i].Directory.FullName+'\'+$newname;
if(-not (test-path -liter $newfile)){
write-host ($files[$i].FullName+' --> '+$newname);
};
};
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询