|
@@ -40,7 +40,14 @@ namespace InABox.Mobile
|
|
|
Path.Combine(CacheFolder(), filename);
|
|
|
|
|
|
public static string CacheFolder()
|
|
|
- => Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
|
|
+ {
|
|
|
+ var result = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
|
|
|
+ if (CacheID != Guid.Empty)
|
|
|
+ result = Path.Combine(result,CacheID.ToString());
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static Guid CacheID { get; set; }
|
|
|
|
|
|
}
|
|
|
|