質問編集履歴
2
from send2trash import send2trashを追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,6 +9,8 @@
|
|
9
9
|
|
10
10
|
```python
|
11
11
|
# NG
|
12
|
+
from send2trash import send2trash
|
13
|
+
|
12
14
|
csv_list = glob.glob1(csv_path,"*.csv")
|
13
15
|
|
14
16
|
for csv_file in csv_list:
|
1
文章の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
Pythonで特定のフォルダに入っているCSVファイルを、
|
2
|
-
作業が終わったらゴミ箱に移す処理を行いたいです
|
2
|
+
作業が終わったらゴミ箱に移す処理を行いたいのですが、
|
3
|
+
できないので解決策を探しています。
|
3
4
|
|
5
|
+
以下、現状です。
|
6
|
+
|
4
7
|
Windows:10
|
5
8
|
Python:3.7.3
|
6
9
|
|