首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VB >

vb中 dir 函数为啥没有返回

2013-06-19 
vb中 dir 函数为什么没有返回sub main() If Dir(c:/wimdows/system/1.txt) Thenmsgbox(没有找到文件

vb中 dir 函数为什么没有返回
sub main()
 If Dir("c:/wimdows/system/1.txt")="" Then
    msgbox("没有找到文件")
    exit sub
 else
    open "c:/wimdows/system/1.txt" for output as #1
    print #1
 end if
end sub 
在这个目录下已经存在文件1.txt,可是程序每次都返回没有找到文件,这是什么原因啊?
[解决办法]
If Dir("c:/wimdows/system/1.txt")="" Then


打字认真点,不然查死你自己
[解决办法]
路径错了

本地是用"",不是用"/"

"c:\...\..."
[解决办法]
If?Dir("c:/wimdows/system/1.txt",vbDirectory)=""?Then
……
保证有用,下次记得加上就OK了。

热点排行