FileSystem 模組 (Visual Basic)
更新:2007 年 11 月
FileSystem 模組會包含用於執行檔案、目錄或資料夾以及系統作業的程序。
My 功能在檔案 I/O 作業中的產能和效能勝過使用 FileSystem 模組。如需詳細資訊,請參閱 My.Computer.FileSystem 物件。
備註
這個模組支援會存取檔案和資料夾的 Visual Basic 語言關鍵字和執行階段程式庫成員。
成員
|
|
範例
這個範例會使用 GetAttr 函式來判斷檔案和目錄或資料夾的屬性。
Dim MyAttr As FileAttribute
' Assume file TESTFILE is normal and readonly.
MyAttr = GetAttr("C:\TESTFILE.txt") ' Returns vbNormal.
' Test for normal.
If (MyAttr And FileAttribute.Normal) = FileAttribute.Normal Then
MsgBox("This file is normal.")
End If
' Test for normal and readonly.
Dim normalReadonly As FileAttribute
normalReadonly = FileAttribute.Normal Or FileAttribute.ReadOnly
If (MyAttr And normalReadonly) = normalReadonly Then
MsgBox("This file is normal and readonly.")
End If
' Assume MYDIR is a directory or folder.
MyAttr = GetAttr("C:\MYDIR")
If (MyAttr And FileAttribute.Directory) = FileAttribute.Directory Then
MsgBox("MYDIR is a directory")
End If