MCPcopy Create free account
hub / github.com/crownengine/crown / list_files

Method list_files

src/core/filesystem/filesystem_disk.cpp:358–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

356}
357
358void FilesystemDisk::list_files(const char *path, Vector<DynamicString> &files)
359{
360 CE_ENSURE(NULL != path);
361
362 TempAllocator256 ta;
363 DynamicString abs_path(ta);
364 absolute_path(abs_path, path);
365
366 os::list_files(abs_path.c_str(), files);
367}
368
369void FilesystemDisk::absolute_path(DynamicString &os_path, const char *path)
370{

Callers

nothing calls this directly

Calls 2

list_filesFunction · 0.85
c_strMethod · 0.45

Tested by

no test coverage detected