List all files on the SD card
| 356 | // List all files on the SD card |
| 357 | // |
| 358 | void CardReader::ls(const uint8_t lsflags/*=0*/) { |
| 359 | if (flag.mounted) { |
| 360 | root.rewind(); |
| 361 | printListing(root, nullptr, lsflags); |
| 362 | } |
| 363 | } |
| 364 | |
| 365 | #if ENABLED(LONG_FILENAME_HOST_SUPPORT) |
| 366 |