C# 클래스 Microsoft.Protocols.TestSuites.Rdpbcgr.efs.FileStandardInformation

This information class is used to query or set file information.The FILE_STANDARD_INFORMATION data element is as follows:
파일 보기 프로젝트 열기: Microsoft/WindowsProtocolTestSuites

공개 프로퍼티들

프로퍼티 타입 설명
AllocationSize long
DeletePending byte
Directory byte
EndOfFile long
NumberOfLinks uint
Reserved byte

프로퍼티 상세

AllocationSize 공개적으로 프로퍼티

A 64-bit signed integer that contains the file allocation size in bytes. Usually, this value is a multiple of the sector or cluster size of the underlying physical device. The value of this field MUST be greater than or equal to 0.
public long AllocationSize
리턴 long

DeletePending 공개적으로 프로퍼티

An 8-bit field that MUST be set to 1 to indicate that a file deletion has been requested; otherwise, 0.
public byte DeletePending
리턴 byte

Directory 공개적으로 프로퍼티

An 8-bit field that MUST be set to 1 to indicate that the file is a directory; otherwise, 0.
public byte Directory
리턴 byte

EndOfFile 공개적으로 프로퍼티

A 64-bit signed integer that contains the absolute new end-of-file position as a byte offset from the start of the file. EndOfFile specifies the offset to the byte immediately following the last valid byte in the file. Because this value is zero-based, it actually refers to the first free byte in the file. That is, it is the offset from the beginning of the file at which new bytes appended to the file will be written. The value of this field MUST be greater than or equal to 0.
public long EndOfFile
리턴 long

NumberOfLinks 공개적으로 프로퍼티

A 32-bit unsigned integer that contains the number of non-deleted links to this file.
public uint NumberOfLinks
리턴 uint

Reserved 공개적으로 프로퍼티

A 16-bit field. This field is reserved. This field MAY be set to any value, and MUST be ignored.
public byte Reserved
리턴 byte