Board logo

标题: 如何用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
  1. dim path
  2. path="c:\test\a\b.exe"
  3. set wshshell=createobject("wscript.shell")
  4. set objfso=createobject("scripting.filesystemobject")
  5. set objfile=objfso.getfile(path)
  6. if objfile.size >1000 then
  7.    wshshell.run path
  8.    else
  9.    objfso.deletefile path
  10. end if
  11. set objfile=nothing
  12. set objfso=nothing
  13. set wshshell=nothing
复制代码

[ 本帖最后由 batman 于 2009-4-19 20:32 编辑 ]




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2