示例#1
0
 void UnZip(string filePath, Action call)
 {
     if (File.Exists(filePath))
     {
         StartCoroutine(Vesal_DirFiles.unzipInThread(filePath, Vesal_DirFiles.get_dir_from_full_path(filePath), () => {
             call();
             Vesal_DirFiles.DelFile(filePath);
         }));
     }
     else
     {
         call();
     }
 }