1
我下面寫的腳本:VBA:結果保存XML文件到某個路徑
...
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile("XXXX.xml", True)
a.write......
a.close
我要保存的xml文件「一」 - xxxx.xml到指定的路徑。我搜索「Scripting.FileSystemObject」的功能,應該有一種方法來選擇保存路徑。
但嘗試後我還沒有找到答案。有人知道嗎?