python将 test.txt 移动至当前目录,并改名为 test_solved.txt
时间: 2024-05-05 12:15:32 浏览: 143
修改的test.xml.txt
以下是Python代码实现:
```python
import os
# 获取当前目录
current_dir = os.getcwd()
# 拼接得到 test.txt 的完整路径
source_path = os.path.join(current_dir, 'test.txt')
# 拼接得到目标路径 test_solved.txt 的完整路径
target_path = os.path.join(current_dir, 'test_solved.txt')
# 移动文件
os.rename(source_path, target_path)
```
以上代码中,我们使用了 `os` 模块中的 `getcwd()` 函数获取当前目录,使用 `os.path.join()` 函数拼接得到 `test.txt` 和 `test_solved.txt` 的完整路径,最后使用 `os.rename()` 函数将文件移动并改名。
阅读全文