c# Create Zip File Using 7-zip
d:\s 폴더 안에 있는 모든 파일 (서브디렉토리포함) zip파일 형태로 압축하여 d\s.kmz 파일로 떨군다. Creating "d\s.kmz" file from all files including sub folders in "d\s". 7zip Option : -t[Type] public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { string directoryName = Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().Location); string processName = Path.Combine( directoryName,"7z.exe"); string argument = " a -tZip \"d:\\s.kmz\" \"d:\\s\\*\""; Process p = new Process(); p.StartInfo.Arguments = argum...