2012-03-12 63 views

回答

0

您可以運行系統命令是這樣的:

#include <iostream> 
#include <stdio.h>/*optional*/ 
#include <stdlib.h> 

void main() { 
    system("cat /proc/mounts"); 
    system("cat /etc/mtab"); 
    system("umount /dev/sda1"); 
} 

http://pubs.opengroup.org/onlinepubs/009604499/functions/system.html

+0

但是我怎麼知道libusb發現的設備是什麼? – 2012-03-12 23:57:20

+5

我不認爲'system()'是一種以C語言編程的方式。 – 2012-03-13 01:05:46

相關問題