MCPcopy Create free account
hub / github.com/andysworkshop/stm32plus / getDirectoryIterator

Method getDirectoryIterator

lib/src/filesystem/fat/FatFileSystem.cpp:204–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers 3

iterateDirectoriesMethod · 0.80
directoryListingMethod · 0.80
readImageCacheStatusMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected