unix/Linux低級IO函數的用法
unix/Linux 低級IO函數的用法,必須掌握
寫module ,必要的應用編程知識是應該要有的, 否則 ,怎么寫應用程序來測試你的module或者driver呢?
而且最主要的是 , 了解上層調用的接口, 你就明白了上層的開發者需要什么, 自己才好實現什么。
把手里的看書的事情都放下, 先把 Unix環境高級編程這本書 的第三章 徹底搞熟它
內容包括:
open() ,尤其是各種常見的參數,到底是什么意思, 比如常用創建一個空文件: fd = open("/tmp/xx.txt",O_RDWR | O_CREAT | O_TRUNC);
讀一個文件,fd = open("/dev/hello",O_RDONLY );
如果就是要寫一個既有的文件,fd = open("/dev/hello",O_WRONLY );
具體的參數: man 2 open
read(),
write()
ioctl() ,這個最重要。
lseek() , 文件指針移動
比如下面的例子:
就是簡單的讀一個文件:
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
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 <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
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;
}
關鍵字:Linux、IO函數、高級編程
新文章:
- CentOS7下圖形配置網絡的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統后丟失windows啟動項
- CentOS單網卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網打印機IP講解
- CentOS7使用hostapd實現無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網絡重啟出錯
- 解決Centos7雙系統后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統有什么不同呢
- Centos 6.6默認iptable規則詳解