python os获取文件路径
时间: 2024-09-28 08:00:57 浏览: 36
Python如何获取文件路径/目录
5星 · 资源好评率100%
在Python中,`os` 模块提供了一系列用于操作系统交互的功能,包括处理文件和目录操作。如果你想要获取文件路径,可以使用 `os.path` 模块提供的几个函数。
例如,如果你想获取当前工作目录(即脚本运行时所在的目录),可以使用 `os.getcwd()` 函数:
```python
import os
current_directory = os.getcwd()
print("当前工作目录:", current_directory)
```
如果你有一个文件名,你可以使用 `os.path.join()` 来组合它和目录路径创建完整的路径:
```python
base_dir = "/path/to/your/directory"
file_name = "example.txt"
full_path = os.path.join(base_dir, file_name)
print("完整文件路径:", full_path)
```
另外,如果需要从用户输入或其他来源动态获取路径,可以使用 `input()` 函数配合字符串拼接:
```python
directory_from_user = input("请输入文件所在目录: ")
file_name = "example.txt"
full_path = os.path.join(directory_from_user, file_name)
print("根据用户输入的路径:", full_path)
```
阅读全文