2016-07-24 57 views

回答

0

是的。停止使用system(),並改用WinAPI函數RemoveDirectory

char path[1024]; 
sprintf(path," rmdir /s /q G:\\folder"); 
RemoveDirectory(path); 
相關問題