在VBS中,可以通過以下步驟來創建和使用FileSystemObject對象:
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CreateFolder("C:\path\to\folder")
fso.DeleteFolder("C:\path\to\folder")
Set file = fso.CreateTextFile("C:\path\to\file.txt", True)
file.WriteLine("Hello, World!")
file.Close
Set file = fso.OpenTextFile("C:\path\to\file.txt", 1)
contents = file.ReadAll
file.Close
fso.CopyFile "C:\path\to\source.txt", "C:\path\to\destination.txt"
fso.MoveFile "C:\path\to\source.txt", "C:\path\to\destination.txt"
If fso.FileExists("C:\path\to\file.txt") Then
' 文件存在
End If
If fso.FolderExists("C:\path\to\folder") Then
' 文件夾存在
End If
以上只是一些常見的示例,FileSystemObject對象還具有其他許多方法和屬性,可以根據需要進行深入研究和使用。