fork download
  1. import glob
  2. r=glob.glob('/home/user/ふぉるだ2/**', recursive=True)
  3.  
  4. f = open('yui.txt', 'w')
  5. for i in r:
  6. f.writelines(i+"\n")
  7. f.close()
  8.  
  9.  
  10. """
  11. yui.txt
  12.  
  13. /home/user/ふぉるだ2/
  14. /home/user/ふぉるだ2/フォルダー
  15. /home/user/ふぉるだ2/フォルダー/編集中のドキュメント 1.txt
  16. /home/user/ふぉるだ2/untitled.py
  17. /home/user/ふぉるだ2/filename.txt
  18.  
  19.  
  20. ツリー
  21. /home/user/ふぉるだ2
  22. ├── filename.txt
  23. ├── untitled.py
  24. ├── yui.txt
  25. └── フォルダー
  26. └── 編集中のドキュメント 1.txt
  27.  
  28. """
Runtime error #stdin #stdout #stderr 0.01s 28064KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "./prog.py", line 4, in <module>
PermissionError: [Errno 13] Permission denied: 'yui.txt'