資料夾是否存在,建立資料夾

2021-07-13 19:37:13 字數 903 閱讀 7183

1.

access函式判斷資料夾或者檔案是否存在

函式原型: int access(const char *filename, int mode);

所屬標頭檔案:io.h

filename:可以填寫資料夾路徑或者檔案路徑

mode:0 (f_ok) 只判斷是否存在

2 (r_ok) 判斷寫入許可權

4 (w_ok) 判斷讀取許可權

6 (x_ok) 判斷執行許可權

用於判斷資料夾是否存在的時候,mode取0,判斷檔案是否存在的時候,mode可以取0、2、4、6。 若存在或者具有許可權,返回值為0;不存在或者無許可權,返回值為-1。

錯誤**

eaccess 引數pathname 所指定的檔案不符合所要求測試的許可權。

erofs 欲測試寫入許可權的檔案存在於唯讀檔案系統內。

efault 引數pathname指標超出可訪問記憶體空間。

einval 引數mode 不正確。

enametoolong 引數pathname太長。

enotdir 引數pathname為一目錄。

enomem 核心記憶體不足

eloop 引數pathname有過多符號連線問題。

eio i/o 訪問錯誤。

例項:#include 

#include

int main(void)

2. 建立資料夾

int _mkdir(const char *path,mode_t mode);

函式名: _mkdir   

功 能: 建立乙個目錄   

用 法: int _mkdir( const char *dirname );   

標頭檔案庫:direct.h   

返回值:建立乙個目錄,若成功則返回0,否則返回-1

判斷資料夾是否存在,不存在則建立資料夾

public static boolean i ists string s param args public static void main string args else 得到檔案的相對路徑 string path this.getclass getclassloader getresour...

Qt 判斷檔案或資料夾是否存在及建立資料夾

1.判斷資料夾是不是存在 引數說明 qstring fullpath 資料夾全路徑 方法1 bool isdirexist qstring fullpath return false 方法2 bool isdirexist qstring fullpath return false 2.判斷檔案是不...

Qt 判斷檔案或資料夾是否存在及建立資料夾

1.判斷資料夾是不是存在 引數說明 qstring fullpath 資料夾全路徑 方法1 bool isdirexist qstring fullpath return false 方法2 bool isdirexist qstring fullpath return false 2.判斷檔案是不...