Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮我删除 windows 文件名中的空格吗?
例子:
ABCD001 _V01.DOC >>>> ABCD001_V01.DOC ABCD002 _V01.DOC >>>> ABCD002_V01.DOC
谢谢你。
使用重命名器:
$ renamer --find "/\s/g" --dry-run *
这将从当前目录中的文件名中删除所有空格。一旦您对输出看起来正确感到满意,请删除该--dry-run标志。
--dry-run
首先在一些示例文件上进行测试:
@echo off setlocal enabledelayedexpansion for /f "delims=" %%a in ('dir /b /a-d') do ( set "line=%%~nxa" ren "%%a" "!line: =!" )