import subprocess
import logging
path = 'D:/'
cmd = "(echo select volume E & echo format fs=ntfs quick) | diskpart"
# 参数说明:路径及shell窗口常开,原有的两个参数是用来接收值的
result = subprocess.run(cmd, cwd=path, shell=True, capture_output=True, text=True)
logging.info(result)
python——格式化U盘
最新推荐文章于 2024-07-05 03:44:16 发布