@brief Get basic file system information * @retval int Error code */
| 477 | * @retval int Error code |
| 478 | */ |
| 479 | inline int fileGetSystemInfo(IFS::FileSystem::Info& info) |
| 480 | { |
| 481 | CHECK_FS(getinfo) |
| 482 | return fileSystem->getinfo(info); |
| 483 | } |
| 484 | |
| 485 | /** @brief Get the type of file system currently mounted (if any) |
| 486 | * @retval FileSystemType the file system type |
no test coverage detected