- ファイルのコピー:
Shutilモジュールの
copy()
関数を使用して、ファイルを別の場所にコピーすることができます。例えば、以下のコードはsource_file.txt
をdestination_folder
にコピーします。
import shutil
source_file = 'source_file.txt'
destination_folder = 'destination_folder'
shutil.copy(source_file, destination_folder)
- ファイルの移動:
Shutilモジュールの
move()
関数を使用して、ファイルを別の場所に移動することができます。以下のコードはsource_file.txt
をdestination_folder
に移動します。
import shutil
source_file = 'source_file.txt'
destination_folder = 'destination_folder'
shutil.move(source_file, destination_folder)
- ファイルの削除:
Shutilモジュールの
remove()
関数を使用して、ファイルを削除することができます。以下のコードはfile.txt
を削除します。
import os
import shutil
file_path = 'file.txt'
os.remove(file_path)
- ディレクトリの作成:
Shutilモジュールの
mkdir()
関数を使用して、ディレクトリを作成することができます。以下のコードはnew_directory
という名前のディレクトリを作成します。
import shutil
directory_path = 'new_directory'
shutil.mkdir(directory_path)
これらはShutilモジュールを使用したファイル操作の一部ですが、他にも様々な機能があります。詳細な情報については、Pythonの公式ドキュメントやオンラインのリソースを参照してください。