Board logo

标题: [文件操作] 请问如何批量删减文件名中以年月日命名比如20210114之前的所有字符? [打印本页]

作者: youxianwei    时间: 2022-1-14 22:41     标题: 请问如何批量删减文件名中以年月日命名比如20210114之前的所有字符?

比如:【》》20210114某文件.xxx】【》20210114某文件.xxx】。。。。
作者: Batcher    时间: 2022-1-14 23:21

回复 1# youxianwei


    你这个例子并没有删除20210114之前的所有字符吧?
作者: flashercs    时间: 2022-1-14 23:28

  1. @echo off
  2. cd /d "%~dp0"
  3. powershell -c "dir .\*|ren -literal {$_} -newname {$_.Name -replace '^.*(?=\d{8})',''} -erroraction silentlycontinue"
  4. pause
复制代码

作者: youxianwei    时间: 2022-1-15 10:59

回复 3# flashercs


    感谢答案,好神奇呀,谢谢,这样整理的文件就都能尽量统一为8位数年月日前缀按时间顺序排列了。
作者: aloha20200628    时间: 2022-1-15 14:56

@echo off & setlocal enabledelayedexpansion
for /f "delims=" %%F in ('dir/b/a-d *2021????*.*') do (set nF=%%~nxF & (ren "%%F" "!nF:*2021=2021!" 2>nul))




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2