函數名稱:open
頭檔:<io.h>
函式原型: int open(char *path,int access[,int auth]);
功能: 開啟一個文件
參數:char *path 要開啟的包含路徑的檔名,int access 為開啟方式, int auth 為存取權限
傳回值: 成功返回檔案句柄,失敗返回-1
程式例:開啟一個文件,並輸出提示
#include<stdio.h>#include<io.h>#include<fcntl.h>intmain(void){intfd=open(D:\a.txt,O_RDWR+O_CREAT);if(fd==-1 ){printf(cannotopenthefilen);return1;}printf(successfultoopenthefilen);close(fd);return0;}
運行結果
successfultoopenthefile