博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Windows脚本 - %~dp0的含义
阅读量:4217 次
发布时间:2019-05-26

本文共 3198 字,大约阅读时间需要 10 分钟。

更改当前目录为批处理本身的目录 

有些晕吧?不急,我举例 
比如你有个批处理a.batD:\qq文件夹下  
a.bat
内容为 
cd /d %~dp0 
在这里 
cd /d %~dp0
的意思就是cd /d d:\qq 
%0
代表批处理本身 d:\qq\a.bat 
~dp
是变量扩充 
d
既是扩充到分区号 d: 
p
就是扩充到路径 \qq 
dp
就是扩充到分区号路径 d:\qq

扩充变量语法详解:

:: 选项语法

:: ~I - 删除任何引号("),扩充 %I 
:: %~fI - 
 %I 扩充到一个完全合格的路径名 
:: %~dI - 
仅将 %I 扩充到一个驱动器号 
:: %~pI - 
仅将 %I 扩充到一个路径 
:: %~nI - 
仅将 %I 扩充到一个文件名 
:: %~xI - 
仅将 %I 扩充到一个文件扩展名 
:: %~sI - 
扩充的路径只含有短名 
:: %~aI - 
 %I 扩充到文件的文件属性 
:: %~tI - 
 %I 扩充到文件的日期/时间 
:: %~zI - 
 %I 扩充到文件的大小 
:: %~$PATH:I - 
查找列在路径环境变量的目录,并将 %I 扩充 
:: 
到找到的第一个完全合格的名称。如果环境变量名 
:: 
未被定义,或者没有找到文件,此组合键会扩充到 
:: 
空字符串 
:: 
可以组合修饰符来得到多重结果
:: %~dpI - 
仅将 %I 扩充到一个驱动器号和路径 
:: %~nxI - 
仅将 %I 扩充到一个文件名和扩展名 
:: %~fsI - 
仅将 %I 扩充到一个带有短名的完整路径名 
:: %~dp$PATH:i - 
查找列在路径环境变量的目录,并将 %I 扩充 
:: 
到找到的第一个驱动器号和路径。 
:: %~ftzaI - 
 %I 扩充到类似输出线路的 DIR

----------------------------

Look at this:

Manipulating variables in CMD shell
I'm not sure why this type of information isn't more prominent in the help files, but there you go. NT's command shell can manipulate variables but the operations you can perform are fairly limited. Still, better than nothing. :-) If you want to do some really clever stuff then you're going to have to look elsewhere. Vbscript can be useful as it's got lots of string handling capabilities. There's also Perl and AWK which are Windows (windoze?) ports of some very powerful Unix commands.
%1 is your command line option. 
Namely: mycommand.cmd myoption1. 
%0 determins where the batch file is running from. I've created a demo batch file in my winnt system32 folder called x.cmd. Running this gives the results shown below
%~f1 expands %1 to the drive, path and file name. If you pass %1 from the current directory then this expands that variable to it's full path
echo f0 = %~f0 produces f0 = c:\WINNT\system32\x.cmd 
%~d1 gets the drive letter from %1
echo d0 = %~d0 produces d0 = D 
%~p1 extracts the path from variable %1
echo p0 = %~p0 produces \WINNT\system32\ 
%~dp1 pulls the drive letter and path
echo dp0 = %~dp0 produces C:\WINNT\system32\ 
%~sp1 creates a short path (but no drive letter)
echo sp0 = %~sp0 produces \WINNT\system32
If I set %1 to "c:\Program Files\Internet Explorer" then %~sp1 produces \PROGRA~1\INTER. Note you have to wrap the long path in quotes otherwise the truncation doesn't work. 
%~x1 leaves only the command extension
echo x0 = %~x0 produces .cmd 
%~nx1 extracts the file name and extension
echo nx0 = %~nx0 produces x.cmd 
%~sx1 extracts the short extension from %0
echo sx0 = %~sx0 produces .cmd but a longer extension (.document?) would be cut down to .doc

----------------------------

%~dp0 VS %cd%

%cd% is available either to a batch file or at the command prompt and expands to the drive letter and path of the current directory (which can change e.g. by using the CD command) 

%~dp0 is only available within a batch file and expands to the drive letter and path in which that batch file is located (which cannot change). It is obtained from %0 which is the batch file's name.
An experiment like the following shows the difference
Here is D:\dirshow.bat:

Code:
@echo off
echo this is %%cd%%  %cd%
echo this is %%~dp0 %~dp0

Run it from C:\ and this is what you see

Code:
C:\>D:\dirshow.bat
this is %cd%  C:\

this is %~dp0 D:\

原文地址:

转载地址:http://bhsmi.baihongyu.com/

你可能感兴趣的文章
Python学习笔记——Python提高-2
查看>>
Python学习笔记——多任务-进程
查看>>
Python学习笔记——多任务-线程
查看>>
Vim学习笔记——前言
查看>>
Vim学习笔记——小试牛刀
查看>>
Vim学习笔记——帮助
查看>>
Python学习笔记——网络通信过程
查看>>
Python学习笔记——正则表达式
查看>>
Python学习笔记——数据结构与算法
查看>>
Python学习笔记——顺序表
查看>>
Python学习笔记——链表
查看>>
MarkDown学习笔记——语法
查看>>
Python学习笔记——栈和队列
查看>>
Python学习笔记——排序与搜索
查看>>
Python学习笔记——爬虫之BeautifulSoup4数据提取
查看>>
Python学习笔记——爬虫的思路总结
查看>>
Python学习笔记——爬虫之动态HTML处理和机器图像识别
查看>>
Python学习笔记——爬虫之执行JavaScript语句与训练Tesseract
查看>>
Python学习笔记——爬虫之Scrapy框架
查看>>
Python学习笔记——爬虫之Scrapy项目实战
查看>>