python文件路径
时间: 2023-07-25 08:10:41 浏览: 95
python实现文件路径和url相互转换的方法
在Python中,文件路径可以使用字符串表示,有两种常见的表示方法:
1. 绝对路径:从根目录开始一直到文件的完整路径,例如:`/Users/username/Documents/file.txt`。
2. 相对路径:相对于当前工作目录的路径,例如:`../Documents/file.txt`。
在Python中,可以使用os模块来操作文件路径,例如获取当前工作目录、拼接路径等。示例代码如下:
```python
import os
# 获取当前工作目录
current_dir = os.getcwd()
print("Current working directory:", current_dir)
# 拼接路径
file_path = os.path.join(current_dir, "Documents", "file.txt")
print("File path:", file_path)
```
输出:
```
Current working directory: /Users/username/Projects
File path: /Users/username/Projects/Documents/file.txt
```
阅读全文