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