我在下面编写了一段代码,我在特定路径中创建了一个文本文件,然后当我检查路径时,我没有看到任何文本文件被创建。文件存储在哪里?
Set fso = CreateObject("Scripting.FileSystemObject")
Set f1 = fso.CreateTextFile("c:\testfile.txt", True)
f1.WriteLine "Hello World"
f1.Close
Set ts = fso.OpenTextFile("c:\testfile.txt", 1)
s = ts.ReadLine
print s
ts.Close
但是我没有在路径" c:\ testfile.txt"中看到文本文件。 如果有人知道原因,请回复。
提前致谢
答案 0 :(得分:1)
我担心print
不是有效的VBScript命令;使用
wscript.echo s
但是,写入磁盘根:c:\testfile.txt
会导致access denied
错误;试试c:\somepath\testfile.txt