新聞中心

vxworks下文件讀寫示例

作者: 時(shí)間:2016-10-08 來(lái)源:網(wǎng)絡(luò) 收藏

1.create file on floopy disk and write contents:

本文引用地址:http://m.butianyuan.cn/article/201610/305792.htm

-> pdev=fdDevCreate(0,0,0,0) /* A:,1.44M,whole disk,offset */

-> dosFsMkfs(/fd0,pdev)

-> fd=creat(/fd0/myfile,2) or -> fp=fopen(/fd0/myfile,w)

-> buf=what you want to write to file

-> write(fd,buf,strlen(buf)+1) or -> fprintf(fp,buf)

-> close(fd) or -> fclose(fp)

2.open file and read contents from floopy disk:

-> readbuf=malloc(100)

-> fd=open(/fd0/myfile,2) or -> fp=fopen(/fd0/myfile,r)

-> read(fd,readbuf,100) or -> fread(readbuf,1,50,fp)

-> printf readbuf

-> close(fd) or -> close(fp)

3.on simpc shell:

-> fp=fopen(host:d:/temp/myfile,w)

-> fprintf(fp,kjkkhjk)

-> fclose(fp)



關(guān)鍵詞:

評(píng)論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉