Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsDeleted

bool System.IO.IsolatedStorage.IsolatedStorageFile.IsDeleted
getpackage

Definition at line 41 of file IsolatedStorageFile.cs.

42 {
43 get
44 {
45 try
46 {
47 return !Directory.Exists(RootDirectory);
48 }
49 catch (IOException)
50 {
51 return true;
52 }
53 catch (UnauthorizedAccessException)
54 {
55 return true;
56 }
57 }
58 }

Referenced by System.IO.IsolatedStorage.IsolatedStorageFile.EnsureStoreIsValid().