1. ホーム
  2. python

[解決済み] フォルダーの中身を削除する方法を教えてください。

2022-03-15 12:05:18

質問

Pythonでローカルフォルダの内容を削除するにはどうしたらいいですか?

現在のプロジェクトはWindows用ですが、*nixも見てみたいです。

解決方法は?

import os, shutil
folder = '/path/to/folder'
for filename in os.listdir(folder):
    file_path = os.path.join(folder, filename)
    try:
        if os.path.isfile(file_path) or os.path.islink(file_path):
            os.unlink(file_path)
        elif os.path.isdir(file_path):
            shutil.rmtree(file_path)
    except Exception as e:
        print('Failed to delete %s. Reason: %s' % (file_path, e))