kingBook

Bat 删除多个文件名中的相同字符

删除文件名中的相同字符.bat

::把此文件放到包含文件的文件夹内
::!wind:xx=!中":"与"="之间的字符是要删除的字符
@echo off& setlocal enabledelayedexpansion
for /f "delims=" %%1 in (\'dir /a /b\') do (set wind=%%1
ren "%%~1" "!wind:副本=!")

分类:

技术点:

相关文章:

  • 2021-07-04
  • 2021-11-05
  • 2022-01-05
  • 2021-07-18
  • 2021-11-02
  • 2021-10-19
  • 2022-01-17
  • 2021-07-03
猜你喜欢
  • 2021-10-19
  • 2021-06-04
  • 2021-06-04
  • 2022-01-12
  • 2021-08-17
  • 2021-11-16
  • 2021-10-19
相关资源
相似解决方案