1、可以事先檢查一下傳遞給 read() 函數(shù)的 fd 是否合法,即在 'if ((nread = read(fd,myBuff2,strlen(myBuff2)))0)' 之前判斷 if ( fd == NULL ) printf("出錯(cuò)啦!\n");
創(chuàng)新互聯(lián)建站主營(yíng)白山網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app開發(fā)定制,白山h5小程序設(shè)計(jì)搭建,白山網(wǎng)站營(yíng)銷推廣歡迎白山等地區(qū)企業(yè)咨詢
2、read()函數(shù)是文件操作函數(shù),在c語言中很重要。
函數(shù)的返回值如下:
(1)如果成功,返回讀取的字節(jié)數(shù);
(2)如果出錯(cuò),返回-1并設(shè)置errno;
(3)如果在調(diào)read函數(shù)之前已是文件末尾,則返回0
read()函數(shù)的原型是int read(int fd,void *buf,int count);。它的功能是“從文件說明符fd相關(guān)聯(lián)的文件中讀取count個(gè)字符,并把這些字符存儲(chǔ)到buf所指的緩沖區(qū)中。返回值是操作成功時(shí)所讀到的字節(jié)數(shù),在文件結(jié)束時(shí)可能少于count個(gè)字節(jié);若返回值為-1則說明出錯(cuò)了,返回0則表示到達(dá)文件尾端。例:從文件ABC.txt中讀取前100個(gè)字節(jié)存入數(shù)組buffer中——
#include "stdin.h"
#include "io.h"
#include "fcnt1.h"
int main(void){
int fd;
char buffer[100];
if((fd=open("ABC.txt",O_RDONLY))==-1){
printf("Can't open file.\n");
exit(-1);
}
if(read(fd,buffer,100)!=100)
printf("Possible read error!\n");
}
1、函數(shù)名: write
表頭文件:#includeunistd.h
定義函數(shù):ssize_t write (int fd,const void * buf,size_t count);
函數(shù)說明:write()會(huì)把指針buf所指的內(nèi)存寫入count個(gè)字節(jié)到參數(shù)fd所指的文件內(nèi)。當(dāng)然,文件讀寫位置也會(huì)隨之移動(dòng)。
返回值:如果順利write()會(huì)返回實(shí)際寫入的字節(jié)數(shù)。當(dāng)有錯(cuò)誤發(fā)生時(shí)則返回-1,錯(cuò)誤代碼存入errno中。
錯(cuò)誤代碼:
EINTR 此調(diào)用被信號(hào)所中斷。
EAGAIN 當(dāng)使用不可阻斷I/O 時(shí)(O_NONBLOCK),若無數(shù)據(jù)可讀取則返回此值。
EBADF 參數(shù)fd非有效的文件描述詞,或該文件已關(guān)閉。
程序例:
#includestdlib.h
#includeunistd.h
#includestdio.h
#includestring.h
#includefcntl.h
#includeerrno.h
intmain(void)
{
inthandle;
charstring[40];
intlength,res;
/*
Createafilenamed"TEST.$$$"inthecurrentdirectoryandwrite
astringtoit.If"TEST.$$$"alreadyexists,itwillbeoverwritten.
*/
if((handle=open("TEST.$$$",O_WRONLY|O_CREAT|O_TRUNC,
S_IREAD|S_IWRITE))==-1)
{
printf("Erroropeningfile.\n");
exit(1);
}
strcpy(string,"Hello,world!\n");
length=strlen(string);
if((res=write(handle,string,length))!=length)
{
printf("Errorwritingtothefile.\n");
exit(1);
}
printf("Wrote%dbytestothefile.\n",res);
close(handle);
return0;
}
structxfcb{
charxfcb_flag;/*Contains0xfftoindicatexfcb*/
charxfcb_resv[5];/*ReservedforDOS*/
charxfcb_attr;/*Searchattribute*/
structfcbxfcb_fcb;/*Thestandardfcb*/
};
2、函數(shù)名: read
表頭文件:#includeunistd.h
定義函數(shù):ssize_t read(int fd,void * buf ,size_t count);
函數(shù)說明:read()會(huì)把參數(shù)fd 所指的文件傳送count個(gè)字節(jié)到buf指針?biāo)傅膬?nèi)存中。若參數(shù)count為0,則read為實(shí)際讀取到的字節(jié)數(shù),如果返回0,表示已到達(dá)文件尾或是無可讀取的數(shù)據(jù),此外文件讀寫位置會(huì)隨讀取到的字節(jié)移動(dòng)。
附加說明:如果順利read()會(huì)返回實(shí)際讀到的字節(jié)數(shù),最好能將返回值與參數(shù)count 作比較,若返回的字節(jié)數(shù)比要求讀取的字節(jié)數(shù)少,則有可能讀到了文件尾、從管道(pipe)或終端機(jī)讀取,或者是read()被信號(hào)中斷了讀取動(dòng)作。當(dāng)有錯(cuò)誤發(fā)生時(shí)則返回-1,錯(cuò)誤代碼存入errno中,而文件讀寫位置則無法預(yù)期。
錯(cuò)誤代碼:
EINTR 此調(diào)用被信號(hào)所中斷。
EAGAIN 當(dāng)使用不可阻斷I/O 時(shí)(O_NONBLOCK),若無數(shù)據(jù)可讀取則返回此值。
EBADF 參數(shù)fd 非有效的文件描述詞,或該文件已關(guān)閉。
程序例:
#include
#include
#include
#include
#include
#include
int?main(void)
{
void?*buf;
int?handle,?bytes;
buf?=?malloc(10);
/*
Looks?for?a?file?in?the?current?directory?named?TEST.$$$?and?attempts
to?read?10?bytes?from?it.?To
}
if?((bytes?=?read(handle,?buf,?10))?==?-1)?{
printf("Read?Failed.\n");
exit(1);
}
else?{
printf("Read:?%d?bytes?read.\n",?bytes);
}
return?0;
1.糾正:
read和write是UNIX或者一些類UNIX系統(tǒng),比如LINUX系統(tǒng)中使用的,稱為L(zhǎng)INUX系統(tǒng)函數(shù)。這種函數(shù)只能在特定的操作系統(tǒng)下使用,可移植性差。
fread和fwrite是C庫(kù)函數(shù)。這種函數(shù)基本在任何操作系統(tǒng)都能使用,可移植性高。
2.基礎(chǔ)知識(shí)介紹
只介紹LINUX系統(tǒng)函數(shù),常用的有creat,open,close,read,write,lseek,access,一般用于文件編程
3.如何使用
談到如何使用就必須說到另一個(gè)知識(shí),文件描述符(file
description),是一個(gè)非負(fù)數(shù)。
函數(shù)原型:
int
read(int
fd,
const
void
*buf,
size_t
length)
功能:
從文件描述符fd所指向的文件中讀取length個(gè)字節(jié)到buf所指向的緩存區(qū)中,返回值為實(shí)際讀取的字節(jié)數(shù)
int
write(int
fd,
const
void
*buf,
size_t
length)
功能:
把length個(gè)字節(jié)從buf所指向的緩存區(qū)中寫到件描述符fd所指向的文件中,返回值為實(shí)際寫入的字節(jié)數(shù)
例子:
#define
LENGTH
1024
#define BUFFES_SIZE
1024
int
n1,
n2;
int
fd1,
fd2;
int
buffer[BUFFES_SIZE];
fd1
=
open(
"HEllo1.txt",
O_RDWR
|
O_CREAT,
O_IRUSE
|
O_IWUSR);
fd2
=
open(
"HEllo2.txt",
O_RDWR
|
O_CREAT,
O_IRUSE
|
O_IWUSR);
n1 =
read(
fd1,
buffer, LENGTH);
n2 =
write(
fd2,
buffer, n1);
好了累死了,答案完全原創(chuàng),希望對(duì)你有幫助