13 資料夾和目錄操作

2021-09-24 12:26:39 字數 789 閱讀 1203

2019獨角獸企業重金招聘python工程師標準》

獲取當前目錄(getcwd)

char cwd[300];

getcwd(cwd,sizeof(cwd));

設定當前目錄(chdir)

chdir(「/home」);

建立目錄(mkdir)

mkdir(「test」,0751);

刪除目錄(rmdir,remove)

rmdir(「test」);

讀取目錄:

opendir,readdir,closedir,主要用於遍歷目錄。

#include#include#include#include#include#include//列出某個目錄下的檔案列表以及相應 i 節點號,並且當遇到子目錄,在其後面標示「(dir)」字樣。

int main()

while((dirp=readdir(dp))!=null)

return 0;

}

資料夾遍歷:

#include#include#include#include#include#include#include #include //傳入路徑即可

void show_all(const char* path)

}closedir(dirp);

}

Python 入門 29 資料夾操作

資料夾,又稱目錄。關於目錄操作的函式 物件等主要集中在三個標準庫 os os.path shutil。一 os 模組 基本操作 1 建立新目錄 1 os.mkdir r 路徑 目錄名 建立指定的目錄,無返回值,建立不成功則丟擲異常。為了避免斜槓與反斜槓引起的麻煩,路徑 目錄名 應該用原始字串形式,即...

UNIXC001 資料夾操作

drwxrwxr x 2 moonx moonx 4096 12月 26 09 12 test 資料夾裡x代表可通過的意思 chmod a x test cd test bash cd test permission denied chmod a x test cd test touch filea...

No000083 檔案與資料夾操作

region folder option 資料夾操作 指定目錄是否存在 資料夾路徑 public static bool direxist string dirpath else catch exception ex 建立目錄 public static void makedir string di...