在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对象还具有其他许多方法和属性,可以根据需要进行深入研究和使用。