(string path)
| 8 | internal static class DataStore |
| 9 | { |
| 10 | public static bool IsDataStore(string path) |
| 11 | { |
| 12 | if (string.IsNullOrEmpty(path)) |
| 13 | return false; |
| 14 | |
| 15 | return Path.GetFileName(path).Equals("datastore", StringComparison.OrdinalIgnoreCase) |
| 16 | && File.Exists(path); |
| 17 | } |
| 18 | |
| 19 | public static void DumpDataStore(string path) |
| 20 | { |