您好,登錄后才能下訂單哦!
使用open函數編寫一個程序,打開或者創建一個指定的文件,帶路徑文件名由用戶指定輸入,文件名的最長長度為30.
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#define FLAGS O_WRONLY|O_CREAT|O_TRUNC
#define MODE S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH
int main(int argc, char argv[])
{
const char pathname;//指向需要打開(或創建)文件的絕對路徑名或相對路徑名
int fd;//文件描述符
char pn[30];//pn為字符串數組,存放要打開的文件名
printf("input the pathname[<30 strings]:");//輸入路徑名,小于30個字符
gets(pn);
pathname=pn;
if((fd=open(pathname,FLAGS,MODE))==-1)//調用open函數
{
printf("error,open file failed!\n");
exit(1);//出錯退出
}
printf("OK,open file successful!\n");
printf("fd=%d\n",fd);
return 0;
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。