現在の作業ディレクトリを取得

import os

def get_current_directory():
    return os.getcwd()

関数説明

実行中のスクリプトの現在の作業ディレクトリのパスを取得する

引数説明

返り値説明

文字列(現在の作業ディレクトリのパス)
funky Feb. 8, 2024, 10:15 a.m.