例項
#include "stdafx.h"
#include #include #include #include #include using namespace std;
int _tmain(int argc, _tchar* argv)
} }return 0;
}
執行結果是在.exe目錄下判斷123\\1\\2\\3\\是否有這些檔案沒有就建立。
a) access函式說明
int access(const char *filename, int amode);
amode引數為0時表示檢查檔案的存在性,如果檔案存在,返回0,不存在,返回-1。
這個函式還可以檢查其它檔案屬性:
06 檢查讀寫許可權
04 檢查讀許可權
02 檢查寫許可權
01 檢查執行許可權
00 檢查檔案的存在性
而這個就算這個檔案沒有讀許可權,也可以判斷這個檔案存在於否
存在返回0,不存在返回-1
c函式函式名: access
功 能: 確定檔案的訪問許可權
用 法: int access(const char *filename, int amode);
b)mkdir函式
在工作目錄下,建立新的子目錄
//建立成功返回0 不成功返回-1
C 建立資料夾
使用dos命令 測試成功 include using namespace std intmain qt 測試成功 qstring dir str file 檢查目錄是否存在,若不存在則新建 qdir dir if dir.exists dir str mfc 沒有測試 include include...
C 建立資料夾,刪除資料夾,建立檔案,刪除檔案
protected void button1 click object sender,eventargs e 判斷檔案的存在 else string name getfiles.filename 獲取已上傳檔案的名字 string size getfiles.postedfile.contentle...
建立資料夾
當某資料夾不存在時,建立資料夾 import os path dir file if not os.path.exists path dir os.makedirs path dir 同時建立資料夾有兩種函式,os.mkdir和os.makedirs,兩者的區別在於前者是一級一級建立檔案目錄,後者可...