예제 #1
0
 protected override void appDataProcessSingle(string tarPath)
 {
     if (tarPath.Substring(tarPath.Length - 3, 3) == "tar")
     {
         UnTarHelper.unTarFile(tarPath, appDataDesPath);
     }
     else
     {
         UnZipHelper.unZipFile(tarPath, appDataDesPath);
     }
 }
예제 #2
0
 protected override void appDataProcessSingle(string tarPath)
 {
     UnTarHelper.unTarFile(tarPath, appDataDesPath);
 }