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.
2 parents 237cb1a + 02b3dc8 commit 0f644afCopy full SHA for 0f644af
Introducing_Trinket_M0/Trinket_SDCardList/code.py
@@ -28,6 +28,8 @@
28
29
def print_directory(path, tabs=0):
30
for file in os.listdir(path):
31
+ if file == "?":
32
+ continue # Issue noted in Learn
33
stats = os.stat(path + "/" + file)
34
filesize = stats[6]
35
isdir = stats[0] & 0x4000
0 commit comments