Scripting.FileSystemObject是一个用于操作文件系统的对象模型。它可以用于创建、复制、删除、移动文件和文件夹,以及读取和写入文件的内容。
以下是Scripting.FileSystemObject的一些常见用法:
Set fso = CreateObject("Scripting.FileSystemObject")
If fso.FileExists("C:\path\to\file.txt") Then
' 文件存在
End If
If fso.FolderExists("C:\path\to\folder") Then
' 文件夹存在
End If
fso.CreateFolder("C:\path\to\newFolder")
fso.CopyFile "C:\path\to\file.txt", "C:\path\to\newFolder\file.txt"
fso.CopyFolder "C:\path\to\folder", "C:\path\to\newFolder\folder"
fso.DeleteFile "C:\path\to\file.txt"
fso.DeleteFolder "C:\path\to\folder"
fso.MoveFile "C:\path\to\file.txt", "C:\path\to\newLocation\file.txt"
fso.MoveFolder "C:\path\to\folder", "C:\path\to\newLocation\folder"
Set file = fso.OpenTextFile("C:\path\to\file.txt", 1) ' 1表示以只读模式打开文件
contents = file.ReadAll
file.Close
Set file = fso.OpenTextFile("C:\path\to\file.txt", 2) ' 2表示以写入模式打开文件
file.Write "Hello, World!"
file.Close
注意:在使用Scripting.FileSystemObject时,需要注意文件和文件夹的路径是否正确,并且需要确保有足够的权限执行所需的操作。