C# 클래스 TagTool.TagDefinitions.VFilesList

파일 보기 프로젝트 열기: TheGuardians/TagTool 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Data byte[]
Files List

공개 메소드들

메소드 설명
Extract ( VFileInfo file ) : byte[]

Extracts the specified file.

Find ( string path ) : VFileInfo

Attempts to find a file by its path.

Insert ( string name, string folder, byte fileData ) : void

Adds a new file to the tag.

Remove ( VFileInfo file ) : void

Removes a file from the tag.

Replace ( VFileInfo file, byte newData ) : void

Replaces the specified file.

메소드 상세

Extract() 공개 메소드

Extracts the specified file.
public Extract ( VFileInfo file ) : byte[]
file VFileInfo The file to extract.
리턴 byte[]

Find() 공개 메소드

Attempts to find a file by its path.
public Find ( string path ) : VFileInfo
path string The path of the file to find.
리턴 VFileInfo

Insert() 공개 메소드

Adds a new file to the tag.
public Insert ( string name, string folder, byte fileData ) : void
name string The name of the file to add.
folder string The folder the file is located in.
fileData byte The file data.
리턴 void

Remove() 공개 메소드

Removes a file from the tag.
public Remove ( VFileInfo file ) : void
file VFileInfo The file to remove.
리턴 void

Replace() 공개 메소드

Replaces the specified file.
public Replace ( VFileInfo file, byte newData ) : void
file VFileInfo The file to replace.
newData byte The data to replace it with.
리턴 void

프로퍼티 상세

Data 공개적으로 프로퍼티

Gets or sets the data block containing the data for every file.
public byte[] Data
리턴 byte[]

Files 공개적으로 프로퍼티

Gets or sets the files in the list.
public List Files
리턴 List