Board logo

标题: vbs判断当前目录是否是根目录 [打印本页]

作者: batman    时间: 2009-4-6 13:55     标题: vbs判断当前目录是否是根目录

  1. dim path,code
  2. set wshshell=createobject("wscript.shell")
  3. path=wshshell.currentdirectory:code="在"
  4. set objfso=createobject("scripting.filesystemobject")
  5. set objtemp=objfso.opentextfile(path&"\temp",2,true)
  6. set objfile=objfso.getfile(path&"\temp")
  7. if objfile.drive&"\"<>path then code="不"&code
  8. wsh.echo "程序"&code&"根目录下"
  9. objtemp.close
  10. objfso.deletefile(path&"\temp")
  11. set objtemp=nothing
  12. set objfile=nothing
  13. set obfso=nothing
  14. set wshshell=nothing
复制代码

[ 本帖最后由 batman 于 2009-4-6 13:56 编辑 ]
作者: batman    时间: 2009-4-6 14:15

又想了下,不用这么麻烦,利用right函数截取字符就可以了:
  1. dim code
  2. code=""
  3. set wshshell=createobject("wscript.shell")
  4. if right(wshshell.currentdirectory,1)<>"\" then code="不"
  5. wsh.echo "当前"&code&"是在根目录下"
  6. set wshshell=nothing
复制代码





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