[已解决]用变量做文件名出错,谢谢大家
本帖最后由 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)
但是出错,请大家给我看看 谢谢大家了! 回复 1# nxbigdaddy
$file = FileOpen("c:\"&$f&".txt", 10)
修改红字 不行的,显示 不能打开文件啊 有人可以帮帮忙吗?谢谢了 是我的字符串的问题,谢谢,已经解决
页:
[1]