创建文本文件后,我看到给定的 path.where 中不存在该文件,它是否存储在 vbscript 中?

After creating textfile i see that file is not there in the given path.where is it stored in vbscript?

我写了下面的一段代码,我在特定路径中创建了一个文本文件,然后当我检查该路径时,我没有看到任何文本文件created.Where文件是否已存储?

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" 有知道原因的请回复

提前致谢

恐怕 print 不是有效的 VBScript 命令;使用

wscript.echo s

但是,写入磁盘根目录:c:\testfile.txt 会导致 access denied 错误;尝试 c:\somepath\testfile.txt