openat()函式的用法示例
《Unix環境高階程式設計》的第三章和第四章出現了大量的以at結尾的函式,如openat、fstatat等,書中只是粗略的說明了下,沒有實際的例子讓人很難懂。
- int openat(int dirfd, const char *pathname, int flags, mode_t mode);
我初看的時候有如下幾個疑問:
1、按函式原型明顯是要給一個目錄的檔案描述符,可是開啟目錄用的事opendir返回的是一個DIR*的指標,哪來的int型的目錄檔案描述符;
2、open函式常用來開啟一個檔案,沒見過用來開啟目錄的;
3、如果給一個檔案描述符又會報錯,這個變數到底該如何賦值?
幾經周折,請教了網路上的大神後終於找到了這個函式的示例函式。
用法有兩種,分別說明如下。
1、直接用open開啟目錄,用返回值作為openat的第一個引數的值,程式碼如下:
- #include <stdio.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <stdlib.h>
- #include <unistd.h>
- void creat_at(char *dir_path, char *relative_path)
- {
- int dir_fd;
- int fd;
- int flags;
- mode_t mode;
- dir_fd = open(dir_path, O_RDONLY);
- if (dir_fd < 0)
- {
- perror("open");
- exit(EXIT_FAILURE);
- }
- flags = O_CREAT | O_TRUNC | O_RDWR;
- mode = 0640;
- fd = openat(dir_fd, relative_path, flags, mode);
- if (fd < 0)
- {
- perror("openat");
- exit(EXIT_FAILURE);
- }
- write(fd, "HELLO", 5);
- close(fd);
- close(dir_fd);
- }
- int main()
- {
- creat_at("./open", "log.txt");
- return 0;
- }
2、借用dirfd,將DIR*轉換成int型別的檔案描述符
函式原型如下:
- int dirfd(DIR *dirp);
完整程式碼如下:
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <dirent.h>
- #include <stdio.h>
- #include <unistd.h>
- int main()
- {
- DIR *dir;
- int dirfd2;
- int fd;
- int n;
- dir = opendir("./open/chl");
- if(NULL == dir)
- {
- perror("open dir error");
- return -1;
- }
- dirfd2 = dirfd(dir);
- if(-1 == dirfd2)
- {
- perror("dirfd error");
- return -1;
- }
- fd = openat(dirfd2,"output.log",O_CREAT|O_RDWR|O_TRUNC);
- if(-1 == fd)
- {
- perror("opeat error");
- return -1;
- }
- n = write(fd,"Hello world!\n",15);
- close(fd);
- closedir(dir);
- return 0;
- }
實際上感覺和open函式差不了多少,只是一個是字串常量,一個是已經開啟的檔案描述符。
相關文章
- oracle的with函式用法示例Oracle函式
- PHP trim()函式 用法示例PHP函式
- Sanic response stream() 函式用法和示例函式
- Sanic response redirect() 函式用法和示例函式
- Sanic response raw() 函式用法和示例函式
- Sanic response file() 函式用法和示例函式
- Sanic response html() 函式用法和示例HTML函式
- Sanic response text() 函式用法和示例函式
- Sanic response json() 函式用法和示例JSON函式
- Sanic response file_stream() 函式用法和示例函式
- Python常見工廠函式用法示例Python函式
- ascii函式和substr函式的用法ASCII函式
- GetModuleFileName函式的用法函式
- createStyleSheet()函式的用法函式
- qsort函式的用法函式
- COALESCE函式的用法。函式
- Instr函式的用法函式
- 【Oracle的NVL函式用法】Oracle函式
- fork()函式的基本用法函式
- Oracle dump函式的用法Oracle函式
- Oracle trunc()函式的用法Oracle函式
- Oracle 函式 Translate 的用法Oracle函式
- Translate函式用法函式
- abs函式用法函式
- jQuery函式的等價原生函式程式碼示例jQuery函式
- PG extract 函式示例函式
- C語言中函式printf()和函式scanf()的用法C語言函式
- C++ 函式 realloc 的用法C++函式
- PostgreSQL>視窗函式的用法SQL函式
- string 函式的基本用法函式
- Excel函式的初級用法Excel函式
- mysql中replace函式的用法MySql函式
- Oracle to_date()函式的用法Oracle函式
- translate函式的靈活用法函式
- cast函式的用法案例AST函式
- 關於lag函式的用法函式
- SQL LEN()函式用法SQL函式
- SSD-函式用法函式