We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
in FSBrowser.ino
Line 195 sets isDir false bool isDir = false;
then a test in line 197 tests the state of isDir which will always be false output += (isDir) ? "dir" : "file"
Nowhere is the value of isDir changed, so this code has an error.