MCPcopy Create free account
hub / github.com/apple/foundationdb / listDirectories

Function listDirectories

flow/Platform.actor.cpp:2755–2757  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2753}
2754
2755std::vector<std::string> listDirectories(std::string const& directory) {
2756 return findFiles(directory, "", true /* directoryOnly */, false).get();
2757}
2758
2759Future<std::vector<std::string>> listDirectoriesAsync(std::string const& directory) {
2760 return findFiles(directory, "", true /* directoryOnly */, true);

Callers 5

findFilesRecursivelyFunction · 0.85
getDiskStoresFunction · 0.85
mainFunction · 0.85
coordChangeClusterKeyFunction · 0.85
listURLsMethod · 0.85

Calls 1

getMethod · 0.65

Tested by

no test coverage detected