Пример #1
0
 internal static string GetRootCacheFolder()
 {
     try
     {
         if (HTTPManager.RootCacheFolderProvider != null)
         {
             return(HTTPManager.RootCacheFolderProvider());
         }
     }
     catch (Exception ex)
     {
         HTTPManager.Logger.Exception("HTTPManager", "GetRootCacheFolder", ex);
     }
     return(Application.persistentDataPath);
 }