发布网友 发布时间:2022-04-23 22:51
共1个回答
热心网友 时间:2022-07-12 07:40
不清楚你的实际文件/情况,仅以问题中的样例说明及猜测为据;以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件放一起双击运行
@echo off
rem 将当前目录里没有相同名称的jpg文件与之配对的其他扩展名类型文件移动到指定文件夹里
mode con lines=3000
set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%@% %z%
cd /d "%~dp0"
set "newfolder=selected raw"
if not exist "%newfolder%" md "%newfolder%"
for /f "delims=" %%a in ('dir /a-d-h/b') do (
if /i "%%~nxa" neq "%~nx0" (
if /i "%%~xa" neq ".jpg" (
if not exist "%%~na.jpg" (
echo;"%%a" --^> "%newfolder%\"
)
)
)
)
echo;%#% +%$%%$%/%@% %z%
pause
exit