bat批处理针对带有空格路径的处理方法

最近在写windows平台下tomcat的数据采集脚本,发现bat针对空格路径处理很费劲,就简单的动了下小心思,自己写了个办法,因为我没真是没在网上找的更好的办法,随说有人说加双引号,我是要做路径拼接,这个不能很直接的解决问题

思路

  • 无论输入的路径是否带空格或者是否带双引号,都按照带双引号的来处理,做去除双引号处理,函数MoveQuotationMarks

  • 进行文件路径的拼接,addFile

  • 再次将拼接后的路径加上双引号


@echo off



echo please input
set /p filepath=

rem echo %filepath%
rem call:MoveQuotationMarks
rem echo %filepath%
rem call:AddQuotationMarks
rem echo %filepath%

call:addFile web.xml

echo %filepath%

type %filepath% >> 123.txt
:MoveQuotationMarks
    set filepath=%filepath:"=%
goto:eof

:AddQuotationMarks
    set filepath="%filepath%"
goto:eof

:addFile
    call:MoveQuotationMarks
    if "%filepath:~-1%"=="/" (
        set filepath=%filepath%%1
    ) else (
        if "%filepath:~-1%"=="/" (
            set filepath=%filepath%%1
            ) else (
                set filepath=%filepath%\%1
            )
    )
    call:AddQuotationMarks

got:eof

转载于:https://www.cnblogs.com/ssjt/articles/11570511.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值