ホーム › Storage.FileSystem › READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
列挙型メンバー 4
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| ReadDirectoryNotifyInformation | 1 | 0x1 | ReadDirectoryChangesExW 関数は、指定されたディレクトリ内の変更を示す情報を提供し、その情報を FILE_NOTIFY_INFORMATION 構造体の形式で出力バッファーに返します。 |
| ReadDirectoryNotifyExtendedInformation | 2 | 0x2 | ReadDirectoryChangesExW 関数は、指定されたディレクトリ内の変更を示す拡張情報を提供し、その情報を FILE_NOTIFY_EXTENDED_INFORMATION 構造体の形式で出力バッファーに返します。 |
| ReadDirectoryNotifyFullInformation | 3 | 0x3 | |
| ReadDirectoryNotifyMaximumInformation | 4 | 0x4 |
公式ドキュメント
ReadDirectoryChangesExW 関数を呼び出すアプリケーションが要求できる情報の種類を示します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS : int {
ReadDirectoryNotifyInformation = 1,
ReadDirectoryNotifyExtendedInformation = 2,
ReadDirectoryNotifyFullInformation = 3,
ReadDirectoryNotifyMaximumInformation = 4
} READ_DIRECTORY_NOTIFY_INFORMATION_CLASS;public enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS : int
{
ReadDirectoryNotifyInformation = 1,
ReadDirectoryNotifyExtendedInformation = 2,
ReadDirectoryNotifyFullInformation = 3,
ReadDirectoryNotifyMaximumInformation = 4,
}Public Enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS As Integer
ReadDirectoryNotifyInformation = 1
ReadDirectoryNotifyExtendedInformation = 2
ReadDirectoryNotifyFullInformation = 3
ReadDirectoryNotifyMaximumInformation = 4
End Enumimport enum
class READ_DIRECTORY_NOTIFY_INFORMATION_CLASS(enum.IntEnum):
ReadDirectoryNotifyInformation = 1
ReadDirectoryNotifyExtendedInformation = 2
ReadDirectoryNotifyFullInformation = 3
ReadDirectoryNotifyMaximumInformation = 4// READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
pub const ReadDirectoryNotifyInformation: i32 = 1;
pub const ReadDirectoryNotifyExtendedInformation: i32 = 2;
pub const ReadDirectoryNotifyFullInformation: i32 = 3;
pub const ReadDirectoryNotifyMaximumInformation: i32 = 4;// READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
const (
ReadDirectoryNotifyInformation int32 = 1
ReadDirectoryNotifyExtendedInformation int32 = 2
ReadDirectoryNotifyFullInformation int32 = 3
ReadDirectoryNotifyMaximumInformation int32 = 4
)const
ReadDirectoryNotifyInformation = 1;
ReadDirectoryNotifyExtendedInformation = 2;
ReadDirectoryNotifyFullInformation = 3;
ReadDirectoryNotifyMaximumInformation = 4;// READ_DIRECTORY_NOTIFY_INFORMATION_CLASS
pub const ReadDirectoryNotifyInformation: i32 = 1;
pub const ReadDirectoryNotifyExtendedInformation: i32 = 2;
pub const ReadDirectoryNotifyFullInformation: i32 = 3;
pub const ReadDirectoryNotifyMaximumInformation: i32 = 4;const
ReadDirectoryNotifyInformation* = 1
ReadDirectoryNotifyExtendedInformation* = 2
ReadDirectoryNotifyFullInformation* = 3
ReadDirectoryNotifyMaximumInformation* = 4enum READ_DIRECTORY_NOTIFY_INFORMATION_CLASS : int {
ReadDirectoryNotifyInformation = 1,
ReadDirectoryNotifyExtendedInformation = 2,
ReadDirectoryNotifyFullInformation = 3,
ReadDirectoryNotifyMaximumInformation = 4,
}#define global ReadDirectoryNotifyInformation 0x1
#define global ReadDirectoryNotifyExtendedInformation 0x2
#define global ReadDirectoryNotifyFullInformation 0x3
#define global ReadDirectoryNotifyMaximumInformation 0x4