質問編集履歴
1
コードの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -3,6 +3,7 @@
|
|
3
3
|
|
4
4
|
```python
|
5
5
|
path = "./A/a"
|
6
|
+
list = []
|
6
7
|
for root, dirs, files in os.walk(path):
|
7
8
|
for name in files:
|
8
9
|
list.append(os.path.join(root, name))
|