Skip to content
Snippets Groups Projects
Commit e06d8209 authored by Marius Kintel's avatar Marius Kintel
Browse files

Also skip .files and _files with long filenames

parent 1d06b109
Branches
Tags
No related merge requests found
...@@ -90,6 +90,8 @@ void CardReader::lsDive(const char *prepend,SdFile parent) ...@@ -90,6 +90,8 @@ void CardReader::lsDive(const char *prepend,SdFile parent)
{ {
if (p.name[0] == DIR_NAME_FREE) break; if (p.name[0] == DIR_NAME_FREE) break;
if (p.name[0] == DIR_NAME_DELETED || p.name[0] == '.'|| p.name[0] == '_') continue; if (p.name[0] == DIR_NAME_DELETED || p.name[0] == '.'|| p.name[0] == '_') continue;
if (longFilename[0] != '\0' &&
(longFilename[0] == '.' || longFilename[0] == '_')) continue;
if ( p.name[0] == '.') if ( p.name[0] == '.')
{ {
if ( p.name[1] != '.') if ( p.name[1] != '.')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment