C# 클래스 SimExport.TarArchiveWriter

Produces a tar archive in tar v7 format
파일 보기 프로젝트 열기: 3di/3di-viewer-rei-libs 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
m_asciiEncoding System.Text.ASCIIEncoding
m_files byte[]>.Dictionary

공개 메소드들

메소드 설명
AddDir ( string dirName ) : void

Add a directory to the tar archive. We can only handle one path level right now!

AddFile ( string filePath, byte data ) : void

Add a file to the tar archive

AddFile ( string filePath, string data ) : void

Add a file to the tar archive

ConvertDecimalToPaddedOctalBytes ( int d, int padding ) : byte[]
WriteTar ( Stream s ) : void

Write the raw tar archive data to a stream. The stream will be closed on completion.

메소드 상세

AddDir() 공개 메소드

Add a directory to the tar archive. We can only handle one path level right now!
public AddDir ( string dirName ) : void
dirName string
리턴 void

AddFile() 공개 메소드

Add a file to the tar archive
public AddFile ( string filePath, byte data ) : void
filePath string
data byte
리턴 void

AddFile() 공개 메소드

Add a file to the tar archive
public AddFile ( string filePath, string data ) : void
filePath string
data string
리턴 void

ConvertDecimalToPaddedOctalBytes() 공개 정적인 메소드

public static ConvertDecimalToPaddedOctalBytes ( int d, int padding ) : byte[]
d int
padding int
리턴 byte[]

WriteTar() 공개 메소드

Write the raw tar archive data to a stream. The stream will be closed on completion.
public WriteTar ( Stream s ) : void
s Stream Stream to which to write the data
리턴 void

프로퍼티 상세

m_asciiEncoding 보호되어 있는 정적으로 프로퍼티

protected static ASCIIEncoding,System.Text m_asciiEncoding
리턴 System.Text.ASCIIEncoding

m_files 보호되어 있는 프로퍼티

protected Dictionary m_files
리턴 byte[]>.Dictionary