| 356 | } |
| 357 | |
| 358 | void 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 | |
| 369 | void FilesystemDisk::absolute_path(DynamicString &os_path, const char *path) |
| 370 | { |
nothing calls this directly
no test coverage detected