Python os.pardir 方法

Python os.pardir 方法

os.pardir() 获取当前目录的父目录(上一级目录),以字符串形式显示目录名。

注意: Windows 和 POSIX 返回 ..

Python os.pardir 语法

pardir()方法语法格式如下:

os.pardir

Python os.pardir 参数

  • 无。

Python os.pardir 返回值

返回当前目录的父目录,默认值为 ..

Python os.pardir 示例1

以下实例演示了 pardir() 方法的使用:

import os

# 输出默认值 ..
print(os.pardir)

执行以上程序输出结果为:

Python os.pardir 方法

Python os.pardir 示例2

打印当前目录的父目录:

import os

# 当前工作目录
path = os.getcwd()
print("Current working directory: ", path)

# 父目录
parent = os.path.join(path, os.pardir)

# 父目录
print("\nParent directory:", os.path.abspath(parent))

执行以上程序输出结果为:

Python os.pardir 方法

Python os.pardir 示例3

获取指定路径的父节点。

import os

# path
path = "/home/deepinout/Camera"
print("Path:", path)

# parent
parent = os.path.join(path, os.pardir)
print("parent:", parent)

# prints the relative file path 
# for the current directory (parent)
print("\nParent:", os.path.relpath(parent))

执行以上程序输出结果为:

Python os.pardir 方法

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程