Board logo

标题: 【已解决】批处理删除文件末尾为偶数的文件 [打印本页]

作者: kaisly    时间: 2020-4-25 03:26     标题: 【已解决】批处理删除文件末尾为偶数的文件

本帖最后由 kaisly 于 2020-4-25 15:58 编辑

报仇:50元
方式:支付宝
联系方式:QQ 543902930
@ECHO OFF
SETLOCAL EnableDelayedExpansion
SET OddNumber=13579
SET EvenNumber=02468
FOR %%F IN (*。
  *) DO (
  SET FileName=%%~nF
  SET LastChar=!FileName:~-1!
  CALL rocess!LastChar! %%F
)
ENDLOCAL
GOTO :EOF
REM 显示并删除尾号为偶数的文件
:Process0
:Process2
:Process4
:Process6
:Process8
ECHO 尾号为偶数的文件:%1
DEL %1
GOTO :EOF


但这个没法删除文件名有中文以及下划线 空格等文件
作者: xczxczxcz    时间: 2020-4-25 04:20

  1. @echo off  & cd /d "%~dp0"
  2. powershell "ls '.\*' -r|?{!$_.PSIsContainer}|?{[Regex]::Match($_.BaseName, '(0|2|4|6|8)$').value }|rm -Force -Verb"
  3. set/p="全部完成 按任意键退出"<nul&pause>nul
复制代码

作者: zaqmlp    时间: 2020-4-25 04:37

  1. @echo off
  2. cd /d "%~dp0"
  3. for /f "delims=" %%a in ('dir /a-d/b^|findstr "[02468]\.[^\.]*$"') do (
  4.     if /i "%%~nxa" neq "%~nx0" (
  5.         echo;"%%a"
  6.         del /a /f /q "%%a"
  7.     )
  8. )
  9. pause
  10. exit
复制代码

作者: hlzj88    时间: 2020-4-25 07:05

用不动脑子的办法
del /q/f *0.*
del /q/f *2.*
del /q/f *4.*
del /q/f *6.*
del /q/f *8.*
也就5行
作者: zaqmlp    时间: 2020-4-25 16:08

回复 4# hlzj88

如果文件名称是这样
a0.2.13.bc.zip
作者: netdzb    时间: 2020-4-25 18:52

回复  hlzj88

如果文件名称是这样
a0.2.13.bc.zip
zaqmlp 发表于 2020-4-25 16:08


ren *.zip *
先去掉zip
然后delete,最后在
ren * *.zip
改回来




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