python パス·ディレクトリ取得

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python パス·ディレクトリ取得相关的知识,希望对你有一定的参考价值。

#!/usr/local/bin/python3.4
# coding:utf-8
import os

print("Content-Type: application/json; charset=UTF-8\r\n")

# カレントディレクトリを取得・確認(絶対パス)
print('getcwd:', os.getcwd())

# 実行中のスクリプト名(相対パス)
print('__file__:', __file__)

# 実行中のスクリプトのディレクトリ(相対パス)
print('basename:', os.path.basename(__file__))

# 実行中のスクリプトのディレクトリ
print('dirname:', os.path.dirname(__file__))

# 絶対パス取得
print('abspath:', os.path.abspath(__file__))

# 絶対パス取得 ディレクトリ
print('abs dirname:', os.path.dirname(os.path.abspath(__file__)))

以上是关于python パス·ディレクトリ取得的主要内容,如果未能解决你的问题,请参考以下文章

python ディレクトリ内のすべてのファイルを取得

python 指定ディレクトリ内のファイル一覧を取得する

python ディレクトリ内のファイルを打印

text ディレクトリ名

markdown WordPress的ディレクトリ构成案

sh MKDIRの再帰ディレクトリ作成