我在下面写了一个脚本:
...
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile("XXXX.xml", True)
a.write......
a.close
我想将xml文件“a” - xxxx.xml保存到指定的路径。我搜索“Scripting.FileSystemObject”的功能,应该有一种方法来选择保存路径。
但尝试后我没有找到答案。有人知道吗?
答案 0 :(得分:2)
您只需添加文件名的路径:
Set a = fs.CreateTextFile("C:\Temp\XXXX.xml", True)