BAT:通過連接符處理判斷OR的關系
阿新 • • 發佈:2019-01-13
|| ucc 其中 行數 找到 enabled 返回 2.3 bat
使用情況說明:
適用於對某個文件夾下不同的文件夾(名稱)做不同的處理,但存在需要對其中多個文件夾(名稱)進行相同處理的情況
例子中的目錄結構:
.\1.2.3 -- 文件夾
.\a.b.c -- 文件夾
.\d.d.d -- 文件夾
.\if_or.bat -- 文件
@echo off
set current_path=%~dp0
echo %current_path%
for /f "delims=" %%i in (‘dir /ad/b "%current_path%"‘) do (
set temp_path=%%i
setlocal enabledelayedexpansion
rem find /C --僅顯示包含字符串的行數。--找不到返回1,找到返回0
echo !temp_path! | find /c "a.b." > nul || echo !temp_path! | find /c "1.2." > nul
::echo !temp_path! | find /c "a.b." > nul
echo =!temp_path!=!errorlevel!
if !errorlevel! equ 0 (
echo It is included !temp_path!
echo !temp_path! | find /c "1.2." > nul
echo -!temp_path!-!errorlevel!
if !errorlevel! equ 0 (
echo success 1.2.
)
echo !temp_path! | find /c "a.b." > nul
echo -!temp_path!-!errorlevel!
if !errorlevel! equ 0 (
echo success a.b.
)
) else (
echo Not match !temp_path!
)
setlocal disabledelayedexpansion
)
echo =======================================================
pause
BAT:通過連接符處理判斷OR的關系