要获取文件路径,可以使用Python中的os模块的方法。以下是几种常用的方法:
- 使用os.path模块的abspath方法获取文件的绝对路径:
import os file_path = 'example.txt' absolute_path = os.path.abspath(file_path) print(absolute_path)
- 使用os模块的getcwd方法获取当前工作目录,并结合文件名构建文件的绝对路径:
import os current_dir = os.getcwd() file_name = 'example.txt' absolute_path = os.path.join(current_dir, file_name) print(absolute_path)
- 使用os.path模块的dirname方法获取文件的目录路径:
import os file_path = 'path/to/example.txt' dir_path = os.path.dirname(file_path) print(dir_path)
这些方法可以根据需要选择使用,根据文件路径的不同情况来获取文件的路径信息。