Windows批处理中获取文件属性的一些方法
网络编程
windows的batchfile可以有%0-%9参数,其中%0默认表示batchfile的全路径,%1-%9为用户的传入参数。
以下特殊标记可以用来获得文件的属性,如果对%0使用特殊标记,表示获得batachfile的相关属性,如果%1-%9中某个%*是个文件的路径,也可以使用如下特殊标记来获得%*表示文件的相关属性。
例如:D:testfoldertest.bat
echo off echo path name: echo %1 echo fully qualified path name: echo %~f1 echo dirive: echo %~d1 echo path: echo %~p1 echo name: echo %~n1 echo extention: echo %~x1 echo short name: echo %~s1 echo attribute: echo %~a1 echo time: echo %~t1 echo size: echo %~z1 echo directory: echo %~dp1
调用时为D:testfoldertest.bat "c:testnew foldermytable.txt",输出如下:
D:>echo off path name: "c:testnew foldermytable.txt" fully qualified path name: c:testNew Foldermytable.txt dirive: c: path: testNew Folder name: mytable extention: .txt short name: c:testNEWFOL~1mytable.txt attribute: --a------ time: 2010-09-27 15:01 size: directory: c:testNew Folder
实现android应用程序自动化测试的批处理脚本
测试平台:兼容android所有平台(2.3-4.2)测试背景:由于需要对产品的SDK做接口测试,而这些接口需要在app里面调用,故开发了一个简单的android应用(
使用winrar打包air程序为exe(包含air运行环境)
AdobeAIR安装率实在太低了。所以很必要对你的air程序进行打包。那个Shu我是没用过,广告打得很猛,但是完全可以用winrar就达到打包air的目的。1.准备好
恢复c盘系统默认权限的bat批处理
由于做过安全,c盘的一些权限不知道哪个地方需要设置,这里提供恢复系统默认权限的批处理方法.@ECHOOFFsetlocalecho===============================echo恢复C盘默认NT
编辑:一起学习网
标签:批处理,测试,标记,属性,权限