0
我在VBScript中遇到問題。運行此腳本時出現錯誤。它說'找不到路徑'。VBScript錯誤:找不到路徑
<SCRIPT Language="VBScript">
Option Explicit
dim filesys, filetxt
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Set filesys = CreateObject("Scripting.FileSystemObject")
If not filesys.FileExists("%USERPROFILE%\CAD_Kunde\CAD_Kunde.txt") Then
Set filetxt = filesys.OpenTextFile("%USERPROFILE%\CAD_Kunde\CAD_Kunde.txt", ForWriting, True)
filetxt.WriteLine ("1")
filetxt.Close
End If
</script>
你自己做了什麼?當您將現有位置(C:\ temp)而不是'%USERPROFILE%'放入時,它是否工作?當你放入用戶位置(C:\ Documents and Setting \ yourusername)而不是'%USERPROFILE&'時,它是否工作?你有沒有試過[谷歌](http://www.google.nl/search?q=vbscript+USERPROFILE)? – AutomatedChaos 2012-03-12 09:17:42
我已經完成了(C:\ temp),但現在我想在用戶配置文件中完成它。與C:\ Documents和設置\ myusername它沒有工作相同的錯誤。是的,我試過谷歌。 – user1225282 2012-03-12 09:36:54