| 869 | } |
| 870 | |
| 871 | bool OpenFromPath(u8string_view path) |
| 872 | { |
| 873 | if (!File::Exists(path)) |
| 874 | { |
| 875 | return false; |
| 876 | } |
| 877 | |
| 878 | auto result = ReadFile(path); |
| 879 | if (result) |
| 880 | { |
| 881 | CurrencyLoadCustomCurrencyConfig(); |
| 882 | } |
| 883 | return result; |
| 884 | } |
| 885 | |
| 886 | u8string GetDefaultPath() |
| 887 | { |
no test coverage detected