| 202 | */ |
| 203 | |
| 204 | bool FatFileSystem::getDirectoryIterator(const char *pathname,DirectoryIterator*& newIterator) { |
| 205 | |
| 206 | FatDirectoryIterator *it; |
| 207 | |
| 208 | if(!FatDirectoryIterator::getInstance(*this,pathname,it)) |
| 209 | return false; |
| 210 | |
| 211 | newIterator=it; |
| 212 | return true; |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Get file information for the given pathname. |
no outgoing calls
no test coverage detected