溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

unix/Linux低級IO函數(shù)怎么用

發(fā)布時間:2021-12-04 15:53:55 來源:億速云 閱讀:102 作者:小新 欄目:系統(tǒng)運維

這篇文章主要介紹unix/Linux低級IO函數(shù)怎么用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

unix/Linux 低級IO函數(shù)的用法,必須掌握寫module ,必要的應(yīng)用編程知識是應(yīng)該要有的, 否則 ,怎么寫應(yīng)用程序來測試你的module或者driver呢?

而且最主要的是 , 了解上層調(diào)用的接口, 你就明白了上層的開發(fā)者需要什么, 自己才好實現(xiàn)什么。

把手里的看書的事情都放下, 先把 Unix環(huán)境高級編程這本書 的第三章 徹底搞熟它。

內(nèi)容包括:

open() ,尤其是各種常見的參數(shù),到底是什么意思, 比如常用創(chuàng)建一個空文件: fd = open("/tmp/xx.txt",O_RDWR | O_CREAT | O_TRUNC);

讀一個文件,fd = open("/dev/hello",O_RDONLY );

如果就是要寫一個既有的文件,fd = open("/dev/hello",O_WRONLY );

具體的參數(shù): man 2 open

read(),

write()

ioctl()  ,這個最重要。

lseek() , 文件指針移動

比如下面的例子:

就是簡單的讀一個文件:

#include

#include

#include

#include

int main(int argc,char **argv)

{

int fd = 0;

int pid = 0;

char buffer[20] = {'\0'};

char *read_buffer[20] = {'\0'};

//fd = open("/dev/hello",O_RDWR | O_CREAT | O_TRUNC);

fd = open("/dev/hello",O_RDONLY ); //| O_NONBLOCK);

printf("fd=%d\n",fd);

if(fd < 0) {

perror("/dev/hello");

return -1;

}

read(fd,read_buffer,sizeof(read_buffer)-1);

printf("read_buffer=%s\n",read_buffer);

close(fd);

return 0;

}

下面這個就是簡單的寫一個文件 ,

#include

#include

#include

#include

int main(int argc,char **argv)

{

int fd = 0;

int pid = 0;

char buffer[20] = {'\0'};

char write_buffer[20] = {'\0'};

strcpy(write_buffer,"zhanglinbao");

fd = open("/dev/hello",O_RDWR | O_CREAT | O_TRUNC);

//fd = open("/dev/hello",O_RDONLY);

printf("fd=%d\n",fd);

if(fd < 0) {

perror("/dev/hello");

return -1;

}

write(fd,write_buffer,sizeof(write_buffer)-1);

close(fd);

return 0;

}

以上是“unix/Linux低級IO函數(shù)怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI