如何用python中subprocess.check_output命令将\\172.18.86.7\\test路径映射到网络驱动器T盘
时间: 2023-07-06 09:43:30 浏览: 117
可以使用以下代码将路径映射到 T 盘:
```
import subprocess
subprocess.check_output('net use T: \\\\172.18.86.7\\test', shell=True)
```
该代码使用 `subprocess.check_output` 命令来执行命令行命令 `net use T: \\\\172.18.86.7\\test`,将路径 `\\172.18.86.7\\test` 映射到 T 盘。`shell=True` 参数是指在命令行中执行命令。如果你想在 Python 中使用路径 `T:\`,则可以在命令中指定 `/persistent:yes` 参数:
```
import subprocess
subprocess.check_output('net use T: \\\\172.18.86.7\\test /persistent:yes', shell=True)
```
这将在计算机下一次启动时保留映射。
阅读全文