linux 改變所有子目錄的許可權chmod

2021-09-30 09:36:24 字數 358 閱讀 2185

改變乙個檔案的許可權: chmod mode file|dir

改變所有子目錄的許可權: chmod mode dir -r

mode = 777 or 752 and so on.

mode的三個數字,分別表示 owner,group,others所具有的許可權。

1 = x 執行 2 = w 寫 4 = r 讀,比如owner具有所有許可權,1+2+4=7,

又比如 group 具有 讀 和 執行 許可權 1+4 = 5

chown new_user file or directory:修改檔案或目錄的所有者。

chgrp new_group file or directory:修改檔案或目錄的所屬組。

linux遍歷目錄及其子目錄

1 在linux下遍歷某一目錄下內容linux下歷遍目錄的方法一般是這樣的 2 開啟目錄 讀取 關閉目錄 4 include 5 dir opendir const char dirname 6 struct dirent readdir dir dirp 7 int closedir dir di...

Delphi 目錄及子目錄所有檔案刪除

需要引用單元 shellapi function deldirectory const source string boolean var fo tshfileopstruct begin fillchar fo,sizeof fo 0 with fo do begin wnd 0 wfunc fo...

Linux中的子目錄介紹

bin 普通使用者的命令 dev 系統中所有裝置檔案 home 普通使用者工作目錄 lost found 發生意外後丟失的檔案 misc 系統配置檔案 net 網路協議狀態資訊 proc 偽檔案系統 sbin 超級使用者命令 srv 網路服務啟動之後所需要取用的資料目錄 tmp 讓一般使用者或者正在...