閱讀英文

共用方式為


FileAccess 列舉

定義

定義檔案讀取、寫入或讀取/寫入存取的常數。

此列舉支援其成員值的位元組合。

public enum class FileAccess
[System.Flags]
public enum FileAccess
[System.Flags]
[System.Serializable]
public enum FileAccess
[System.Flags]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum FileAccess
[<System.Flags>]
type FileAccess = 
[<System.Flags>]
[<System.Serializable>]
type FileAccess = 
[<System.Flags>]
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type FileAccess = 
Public Enum FileAccess
繼承
FileAccess
屬性

欄位

Read 1

檔案的讀取權限, 資料可以從檔案讀取。 與讀/寫存取的 Write 結合。

ReadWrite 3

讀取和寫入檔案的存取權限, 資料可以寫入檔案和從檔案讀取。

Write 2

寫入檔案的存取權限, 資料可以寫入檔案。 與讀/寫存取的 Read 結合。

範例

下列 FileStream 建構函式會授與現有檔案的唯讀存取權, (FileAccess.Read) 。

FileStream^ s2 = gcnew FileStream( name, FileMode::Open, FileAccess::Read, FileShare::Read );
FileStream s2 = new FileStream(name, FileMode.Open, FileAccess.Read, FileShare.Read);
let s2 = new FileStream(name, FileMode.Open, FileAccess.Read, FileShare.Read)
Dim s2 As New FileStream(name, FileMode.Open, FileAccess.Read, FileShare.Read)

備註

如需建立檔案並將文字寫入檔案的範例,請參閱 如何:將文字寫入檔案。 如需從檔案讀取文字的範例,請參閱 如何:從檔案讀取文字。 如需讀取和寫入二進位檔的範例,請參閱 如何:讀取和寫入新建立的數據檔

FileAccess參數是在 、FileInfoFileStream和其他建構函式的許多建構File函式中指定,其中請務必控制使用者對檔案的存取權類型。

適用於

產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

另請參閱