在 Python 中获取绝对路径

Rayven Esplanada 2023年1月30日 2021年2月28日
  1. 使用 abspath() 来获取 Python 中的绝对路径
  2. 在 Python 中使用模块 pathlib 来获取绝对路径
在 Python 中获取绝对路径

本教程将演示如何在 Python 中获取一个文件或文件夹的绝对路径。

使用 abspath() 来获取 Python 中的绝对路径

在 Python 模块 os 下,有一些有用的实用函数和属性,可以在 os.path 属性下操作和访问文件路径。要使用该模块获取绝对路径,用给定的路径调用 path.abspath() 来获取绝对路径。

import os

simp_path = 'demo/which_path.docx'
abs_path = os.path.abspath(simp_path)

print(abs_path)

abspath() 函数的输出将返回一个相对于当前工作目录的绝对路径的字符串值。

输出:

/Users/user/python/demo/which_path.docx

在 Python 中使用模块 pathlib 来获取绝对路径

Python 模块 pathlib 提供了与 os.path 类似的功能,并包含了代表文件路径的类及其相应的属性和用于路径操作和访问的函数。

要使用 pathlib 获得绝对路径,需要从 pathlib 模块中导入 Path 类,并使用该类的 Path.absolute() 函数来确定给定文件或文件夹的绝对路径。

from pathlib import Path

fpath = Path('sample2.py').absolute()

print(fpath)

也支持将绝对路径设置为参数,并且会直接打印出来,而不是将根文件夹相加,使其成为多余的。

from pathlib import Path

fpath = Path('/Users/user/python/sample2.py').absolute()

print(fpath)

这两个实例将产生相同的输出:

/Users/user/python/sample2.py

综上所述,在 Python 中,有两种简单的方法可以在 ospathlib 模块下获取文件或文件夹的绝对路径。从性能上看,这两种方案都比较快,至于开发者想用哪种方案,只是一个喜好的问题。

Rayven Esplanada avatar Rayven Esplanada avatar

Skilled in Python, Java, Spring Boot, AngularJS, and Agile Methodologies. Strong engineering professional with a passion for development and always seeking opportunities for personal and career growth. A Technical Writer writing about comprehensive how-to articles, environment set-ups, and technical walkthroughs. Specializes in writing Python, Java, Spring, and SQL articles.

LinkedIn

相关文章 - Python Path