标题: 如何用VBS命令判断指定文件的属性(大小) [打印本页]
作者: zinet 时间: 2009-4-19 13:54 标题: 如何用VBS命令判断指定文件的属性(大小)
假设有A文件,经过某些程序运行后会在A文件夹中会生成文件B,但B文件生成不稳定,大于1kb才能正常运行,请问如何用vbs命令检测B 文件的属性大小,如果它大于1kb就运行它,反之小于1kb的话就删除并退出,等高人解答,谢谢
作者: defanive 时间: 2009-4-19 16:47
调用fso对象,或者filelen函数。。。
作者: batman 时间: 2009-4-19 20:26
假设完全路径为c:\test\a\b.exe- dim path
- path="c:\test\a\b.exe"
- set wshshell=createobject("wscript.shell")
- set objfso=createobject("scripting.filesystemobject")
- set objfile=objfso.getfile(path)
- if objfile.size >1000 then
- wshshell.run path
- else
- objfso.deletefile path
- end if
- set objfile=nothing
- set objfso=nothing
- set wshshell=nothing
复制代码
[ 本帖最后由 batman 于 2009-4-19 20:32 编辑 ]
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |