C# 클래스 AA2Install.Archives._7z

파일 보기 프로젝트 열기: aa2g/AA2Install

공개 메소드들

메소드 설명
Compress ( string filename, string workingdir, string directory ) : void

Compresses a specified list of files into a 7z archive.

Extract ( string filename, string dest = "" ) : void

Extracts a 7Zip archive to the temp folder

Extract ( string filename, string wildcard, string dest = "" ) : void

Extracts a 7Zip archive to the temp folder (using wildcard)

Index ( string filename, bool miscFiles = false ) : Mod

Creates a mod index from a 7Zip file

비공개 메소드들

메소드 설명
SyncCompress ( string filename, string workingdir, string directory ) : void
SyncExtract ( string filename, string wildcard, string dest = "" ) : void

메소드 상세

Compress() 공개 정적인 메소드

Compresses a specified list of files into a 7z archive.
public static Compress ( string filename, string workingdir, string directory ) : void
filename string Location to save the 7Z file.
workingdir string Working directory of 7za.exe.
directory string Files to compress into the archive.
리턴 void

Extract() 공개 정적인 메소드

Extracts a 7Zip archive to the temp folder
public static Extract ( string filename, string dest = "" ) : void
filename string Location of the 7Zip file.
dest string Destination of extracted files.
리턴 void

Extract() 공개 정적인 메소드

Extracts a 7Zip archive to the temp folder (using wildcard)
public static Extract ( string filename, string wildcard, string dest = "" ) : void
filename string Location of the 7Zip file.
wildcard string Wildcard.
dest string
리턴 void

Index() 공개 정적인 메소드

Creates a mod index from a 7Zip file
public static Index ( string filename, bool miscFiles = false ) : Mod
filename string Location of the 7Zip file.
miscFiles bool Whether or not to include files that aren't related to mod installation. Default is false.
리턴 Mod