中国DOS联盟论坛

中国DOS联盟

-- 联合DOS 推动DOS 发展DOS --

联盟域名:www.cn-dos.net  论坛域名:www.cn-dos.net/forum
DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!

游客:  注册 | 登录 | 命令行 | 会员 | 搜索 | 上传 | 帮助 »
中国DOS联盟论坛 » DOS批处理 & 脚本技术(批处理室) » 怎样把批处理中的文件路径放到配置文件中读取?
作者:
标题: 怎样把批处理中的文件路径放到配置文件中读取? 上一主题 | 下一主题
boy
初级用户





积分 29
发帖 29
注册 2008-11-18
状态 离线
『楼 主』:  怎样把批处理中的文件路径放到配置文件中读取?

我目前的批处理是这样的:

@echo off
set date=%~1
ping /n 83 127.1>nul
IF EXIST k:\public_html\website\nul rd k:\public_html\website /s/q
start /b xcopy /s/r/y/h/c D:\Inetpub\wwwroot\whbcn\public_html\*.* k:\public_html\>D:\Inetpub\wwwroot\whbcn\website_design\Log\updateServerB\%date%.log
goto :eof
exit

我想将里面几个路径放到一个配置文件中,而不是象现在一样写死在批处理里面.
比如配置文件fileConfig.ini内容:
BServerPathWeb=k:\public_html\website
AServerPath=D:\Inetpub\wwwroot\whbcn\public_html
BServerPath=k:\public_html
updateServerBLogPath=D:\Inetpub\wwwroot\whbcn\website_design\Log\updateServerB

我的批处理该怎样改进一下啊?多谢了!

2010-1-8 09:04
查看资料  发短消息 网志   编辑帖子  回复  引用回复
bat-zw
金牌会员

永远的学习者


积分 3105
发帖 1276
注册 2008-3-8
状态 离线
『第 2 楼』:  


@echo off
for /f "delims=" %%a in (config.ini) do set "%%a"
set "dates=%~1"&rem 请不要将变量写成系统变量名
ping /n 83 127.1>nul
if exist "%BServerPathWeb%" rd /s /q "%BServerPathWeb%"
start /b xcopy /s /r /y /h /c "%AServerPath%\*.*" "%BServerPath%\>%updateServerBLogPath%\%dates%.log"
[ Last edited by bat-zw on 2010-1-8 at 10:43 ]

   此帖被 +1 点积分    点击查看详情   
评分人:【 boy 分数: +1  时间:2010-1-8 12:07




批处理之家新域名:www.bathome.net
2010-1-8 09:30
查看资料  发送邮件  发短消息 网志  OICQ (841615149)  编辑帖子  回复  引用回复
boy
初级用户





积分 29
发帖 29
注册 2008-11-18
状态 离线
『第 3 楼』:  

现在在运行的时候,会提示?:
"目标k:\public_html\>D:\Inetpub\wwwroot\whbcn\website_design\Log\updateServerB\%date%.log 是文件名还是目录名 <F = 文件. D = 目录>?"
怎样去掉提示啊?而且现在并没有把旧的文件夹k:\public_html\website删掉,也没有拷贝路径D:\Inetpub\wwwroot\whbcn\public_html\下的所有文件到k:\public_html\下.

修改后的文件:
@echo off
for /f "delims=" %%a in (pathConfig.ini) do set "%%a"
set "dates=%~1"&rem
ping /n 83 127.1>nul
if exist "%BServerPathWeb%\nul" rd /s/q "%BServerPathWeb%"
start /b xcopy /s/r/y/h/c "%AServerPath%\*.*" "%BServerPath%\>%updateServerBLogPath%\%dates%.log"
goto :eof
exit
谢谢!

[ Last edited by boy on 2010-1-8 at 10:33 ]

2010-1-8 10:28
查看资料  发短消息 网志   编辑帖子  回复  引用回复
boy
初级用户





积分 29
发帖 29
注册 2008-11-18
状态 离线
『第 4 楼』:  

搞定!~ 多谢bat-zw

2010-1-8 12:06
查看资料  发短消息 网志   编辑帖子  回复  引用回复

请注意:您目前尚未注册或登录,请您注册登录以使用论坛的各项功能,例如发表和回复帖子等。


可打印版本 | 推荐给朋友 | 订阅主题 | 收藏主题



论坛跳转: