最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

(5)關(guān)于Linux系統(tǒng)的lseek函數(shù)誤區(qū)指南(附測試源碼)

2023-03-08 17:24 作者:豆豆?jié)M江紅  | 我要投稿

#include <sys/types.h>

#include <sys/stat.h>

#include <fcntl.h>

#include <unistd.h>

#include <stdio.h>

#include <string.h>

#include <stdlib.h>


int main(void)

{

? ? int fd1,fd2;

? ? int ret;

? ? char buf[128]={0};



? ? fd1 = open("./test_file",O_TRUNC|O_RDWR);

? ? if(-1 == fd1){

? ? ? ? perror("open error");

? ? ? ? return -1;

? ? }


? ? lseek(fd1,0,SEEK_END);? ??

? ? ret = write(fd1,"HELLO WORLD",11);

? ? if (-1 == ret)

? ? {

? ? ? ? perror("write error");

? ? ? ? close(fd1);

? ? ? ? return -1;

? ? }

? ??

? ? fd2 = open("./test_file",O_RDWR);


? ? lseek(fd2,0,SEEK_END);

? ? ret = write(fd2,"My Love",7);

? ? if(-1 == ret)

? ? {

? ? ? ? perror("read error");

? ? ? ? close(fd1);

? ? ? ? return -1;

? ? }


? ? lseek(fd2,0,SEEK_SET);


? ? ret = read(fd2,buf,18);

? ? if(-1 == ret){

? ? ? ? perror("read error");

? ? ? ? close(fd1);

? ? ? ? close(fd2);

? ? ? ? return -1;

? ? }

? ? printf("read is %s\n",buf);

? ? close(fd1);

? ? close(fd2);

}

/*驗證結(jié)論 : 對于lseek函數(shù)。將文件做末尾對齊時 它會從已經(jīng)寫的字節(jié)的開頭開始寫

即 如果你已經(jīng)寫了一些內(nèi)容如下

buf=[HELLO WORLD]

此時再進(jìn)行末尾寫入

得到的結(jié)果為

buf=[HELLO WORLDMy Love]

*/


(5)關(guān)于Linux系統(tǒng)的lseek函數(shù)誤區(qū)指南(附測試源碼)的評論 (共 條)

分享到微博請遵守國家法律
新乡市| 达州市| 彩票| 东兰县| 梓潼县| 璧山县| 祁东县| 鹿邑县| 南汇区| 兰坪| 柞水县| 涪陵区| 佛冈县| 邵武市| 新晃| 浠水县| 曲沃县| 萨迦县| 宁津县| 正蓝旗| 易门县| 海安县| 乡宁县| 灵璧县| 那曲县| 高安市| 同仁县| 海伦市| 中江县| 嵩明县| 苏尼特右旗| 呼玛县| 广元市| 贺州市| 深泽县| 万年县| 万州区| 涞水县| 上杭县| 邵阳市| 镇江市|