Linux應用程式-檔案編程-file_open()函數疑問__MYSQL

來源:互聯網
上載者:User
/* **系統調用:開啟一個檔案 **函數原型:int open(const char *filename,int flags,mode_t mode); **參數:filename->要開啟的檔案名稱(包含路徑)             flags->以什麼樣的方式開啟            mode->建立模式 傳回值:。。。 */ #include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h> int main(int argc,char *argv[])
{
        int fd;
        if(argc<2)
        {
                puts("please input the open file pathname!\n");
                exit(1);
        }         if((fd=open( argv[1], O_CREAT | O_RDWR,0755))<0)//參數argv[1]按理來說是檔案名稱了,那argv[2] 、argv[3].......呢。。。。
        {
                perror("open file failure!\n");
                exit(1);
        }
        else
        {
                printf("open file %d success!\n",fd);    //fd傳回值的類型,到底是什麼樣的一個值呢。。
        }
        close(fd);
        exit(0);
}
實驗如下: [root@localhost File]# ls
file_creat.c  file_open.c
[root@localhost File]# vi file_open.c 
[root@localhost File]# gcc file_open.c -o file_open
[root@localhost File]# ls
file_creat.c  file_open  file_open.c
[root@localhost File]# ./file_open hello
open file 3 success!                //這裡說明了傳回值fd=3,可真的不知道什麼來計算這個傳回值的值。。
[root@localhost File]# ls
file_creat.c  file_open  file_open.c   hello
解答:上述涉及到linux“檔案描述符的知識”,在linux核心中,檔案描述符分為標準輸入stdin、標準輸出stdout、標準錯誤輸出stderror,分別是0、1、2,這些數存在一個數組中 ,fd=open()調用後,也返回一個檔案描述符,fd的值從3、4、5.......開始,然後存在0、1、2數組之後。
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.