Ejemplo n.º 1
0
 static void ClearPersistentDataPath()
 {
     foreach (string dir in Directory.GetDirectories(CResourceManager.GetAppDataPath()))
     {
         Directory.Delete(dir, true);
     }
 }
Ejemplo n.º 2
0
    }                                                         // 進度

    public CWWWDownloader(string fullUrl, string toPath)
    {
        ToPath    = toPath;
        _SavePath = CResourceManager.GetAppDataPath() + "/" + ToPath;

        WWWLoader = new CWWWLoader(fullUrl);
        CResourceManager.Instance.StartCoroutine(StartDownload(fullUrl));
    }
Ejemplo n.º 3
0
 static void OpenPersistentDataPath()
 {
     System.Diagnostics.Process.Start(CResourceManager.GetAppDataPath());
 }