我正在尝试创建一个自动格式化我的f:\(USB驱动器)的程序,到目前为止我有这个代码:
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <iostream>
int main ()
{
system ("format f:");
system("pause");
return 0;
}
现在,当我运行它时,它出现了,我需要按 Y ,然后 Enter 。我该如何模拟呢?
答案 0 :(得分:1)
正如Tyler在评论中所说,批处理文件会更容易,但这可能会有效:
system( "echo y | format f:" )