| 862 | } |
| 863 | |
| 864 | bool FileMcd_IsMemoryCardFormatted(const std::string& path) |
| 865 | { |
| 866 | auto fp = FileSystem::OpenManagedSharedCFile(path.c_str(), "rb", FileSystem::FileShareMode::DenyNone); |
| 867 | if (!fp) |
| 868 | return false; |
| 869 | |
| 870 | return FileMcd_IsMemoryCardFormatted(fp.get()); |
| 871 | } |
| 872 | |
| 873 | bool FileMcd_IsMemoryCardFormatted(std::FILE* fp) |
| 874 | { |
no test coverage detected