mopidy REST tests

This commit is contained in:
2017-10-09 21:21:11 +02:00
parent a3a61293a3
commit 6a7607a4da
5 changed files with 312 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
import os
def list_files(dir):
r = []
for root, dirs, files in os.walk(dir):
for name in files:
r.append(os.path.join(root, name))
return r
print(list_files('/home/tilman/Musik'))