nxbigdaddy 发表于 2010-2-12 09:43:18

[已解决]用变量做文件名出错,谢谢大家

本帖最后由 nxbigdaddy 于 2010-2-12 10:29 编辑

$f为一个5位随机字母

$file = FileOpen("c:\"&$f&".txt", 8)

; 检查打开的文件可写
If $file = -1 Then
        MsgBox(0, "错误", "不能打开文件.")
        Exit
EndIf

FileWrite($file, "Line1")
FileWrite($file, "Still Line1" & @CRLF)
FileWrite($file, "Line2")

FileClose($file)

但是出错,请大家给我看看

nxbigdaddy 发表于 2010-2-12 09:47:38

谢谢大家了!

guland 发表于 2010-2-12 10:06:51

回复 1# nxbigdaddy


    $file = FileOpen("c:\"&$f&".txt", 10)
修改红字

nxbigdaddy 发表于 2010-2-12 10:08:29

不行的,显示 不能打开文件啊

nxbigdaddy 发表于 2010-2-12 10:23:19

有人可以帮帮忙吗?谢谢了

nxbigdaddy 发表于 2010-2-12 10:28:56

是我的字符串的问题,谢谢,已经解决
页: [1]
查看完整版本: [已解决]用变量做文件名出错,谢谢大家