我需要把這段代碼轉換爲VBScript如何將.Net代碼轉換爲vbscript?
SetAttr("C:\Users\" + Environment.UserName + "\Desktop\Client.exe", FileAttribute.Hidden)
任何人都可以讓我在VBScript上面的代碼?
我需要把這段代碼轉換爲VBScript如何將.Net代碼轉換爲vbscript?
SetAttr("C:\Users\" + Environment.UserName + "\Desktop\Client.exe", FileAttribute.Hidden)
任何人都可以讓我在VBScript上面的代碼?
您必須使用FileSystemObject。提示:這可能很容易搜索到。
例子:
Sub HideFolderFiles(filespec)
Dim fs, f, r
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFolder(filespec).Files
f.attributes = 2 'hidden
End Sub
來源:https://www.experts-exchange.com/questions/28054761/VBScript-to-set-file-attributes.html
請看看[如何對提問](http://stackoverflow.com/help/how-to-ask) – swe