import os import pathlib import glob import shutil #フォルダまたはファイルが存在するかを確認 os.path.exists('abc.txt') #ファイルが存在するかを確認 os.path.isfile('abc.txt') #フォルダが存在するかを確認 os.path.isdir('example') #名前の変更 os.rename('abc.txt', 'xyz.txt') #フォルダの作成 os.mkdir('example') os.mkdir('example/example2') #フォルダの削除 os.rmdir('example') #現在位置するパスを表示 os.getcwd() #空ファイルの作成 pathlib.Path('abc.txt').touch() #ファイルを削除する場合 os.remove('abc.txt') #フォルダの中のファイルを表示する os.listdir('example') #パスを表示する glob.glob('example/example2/*') #ファイルのコピー shutil.copy('example/example2/abc.txt', 'example/example2/abc2.txt,') #フォルダの削除 shutil.rmtree('example')