python获取文件绝对路径
时间: 2023-08-30 11:10:14 浏览: 97
详解在Python中以绝对路径或者相对路径导入文件的方法
可以使用Python中的os模块来获取文件的绝对路径。具体方法如下:
1. 导入os模块
```python
import os
```
2. 使用os.path.abspath()函数获取文件的绝对路径,其中参数为文件名或文件路径
```python
filepath = "test.txt"
abspath = os.path.abspath(filepath)
print(abspath)
```
输出结果为:
```
C:\Users\Username\test.txt
```
如果文件不存在,则会抛出异常。
```python
filepath = "test2.txt"
abspath = os.path.abspath(filepath)
print(abspath)
```
输出结果为:
```
FileNotFoundError: [Errno 2] No such file or directory: 'test2.txt'
```
阅读全文