人気のFunction

ファイル/ディレクトリの存在を確認

def exists(path):
    return os.path.exists(path)

ファイルを削除

def list_directory_contents(directory):
    return os.listdir(directory)

ファイルの名前を変更または移動

def rename_or_move_file(current_path, new_path):
    os.rename(current_path, new_path)

ディレクトリを再帰的にリストする

import os

def list_directory_recursively(directory):
    paths = []
    for root, dirs, files in os.walk(directory):
        for name in files:
            paths.append(os.path.join(root, name))
        for name in dirs:
            paths.append(os.path.join(root, name))
    return paths

シンボリックリンクを作成

def create_symbolic_link(source, target):
    os.symlink(source, target)

ファイル/ディレクトリの最終アクセス時刻を取得

def get_last_modification_time(path):
    return os.path.getmtime(path)