码迷,mamicode.com
首页 > 其他好文 > 详细

BAT:通过连接符处理判断OR的关系

时间:2019-01-13 14:21:34      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:情况   说明   enabled   eve   match   code   disable   处理   ==   

使用情况说明:

适用于对某个文件夹下不同的文件夹(名称)做不同的处理,但存在需要对其中多个文件夹(名称)进行相同处理的情况

例子中的目录结构:

.\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的关系

标签:情况   说明   enabled   eve   match   code   disable   处理   ==   

原文地址:https://www.cnblogs.com/leonlipfsj/p/10262369.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!