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

A structure representing FileRenameInformation as a possible value of the FsInformationClass field. All fields have the same meaning as in FILE_RENAME_INFORMATION in [MS-FSCC] section 2.4.34. The differences are only in the layout of the fields.
파일 보기 프로젝트 열기: Microsoft/WindowsProtocolTestSuites

공개 프로퍼티들

프로퍼티 타입 설명
FileName byte[]
FileNameLength uint
ReplaceIfExists byte
RootDirectory byte

프로퍼티 상세

FileName 공개적으로 프로퍼티

A sequence of Unicode characters containing the file name. When working with this field, use FileNameLength to determine the length of the file name rather than assuming the presence of a trailing null delimiter. If the RootDirectory member is 0, this member MUST specify a full pathname to be assigned to the file. For network operations, this pathname is relative to the root of the share. If the RootDirectory member is not 0, this member MUST specify a pathname, relative to RootDirectory, for the new name of the file.
public byte[] FileName
리턴 byte[]

FileNameLength 공개적으로 프로퍼티

A 32-bit unsigned integer that specifies the length, in bytes, of the file name contained within the FileName member.
public uint FileNameLength
리턴 uint

ReplaceIfExists 공개적으로 프로퍼티

MUST be an 8-bit field that is set to 1 to indicate that if a file with the given name already exists, it SHOULD be replaced with the given file. If set to 0, the rename operation MUST fail if a file with the given name already exists.
public byte ReplaceIfExists
리턴 byte

RootDirectory 공개적으로 프로퍼티

It contains the file handle for the root directory. For network operations, this value MUST always be zero.
public byte RootDirectory
리턴 byte