📜  格式化磁盘 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:34.352000             🧑  作者: Mango

代码示例1
1. Run Diskpart as administrator.

2. Type the following commands and hit Enter after each command.

list disk
select disk n
# n refers to the disk number of the disk that you need to clean

clean
create partition primary
format fs=ntfs quick
assign drive letter=f
exit