1、列出當前目錄的檔案、資料夾完整路徑
ls -1 |awk '' i=`pwd`'/'
2、列出當前目錄及子目錄的檔案、資料夾完整路徑
ls -r |awk '' i=`pwd`'/'
2b) 列出當前目錄及子目錄下的資料夾完整路徑
ls -fr | grep /$ | sed "s:^:`pwd`/:"
3、用find實現,好像執行要慢些
find / -name "*.*" -exec ls {} \;
4、遞迴列出當前目錄及子目錄名稱
ls -fr | grep /$
5、遞迴列出當前目錄及子目錄名稱,包括相關屬性
ls -lr | grep "^d"
# drwxr-xr-x 3 idea idea 4096 aug 2 2009 images
6、只列出當前目錄下的子目錄
用ls只列出子目錄
ls -d */
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...
python 獲取當前目錄及子目錄
for root,dirs,files in os.walk r d test for file in files 獲取檔案所屬目錄 print root 獲取檔案路徑 print os.path.join root,file for root,dirs,files in os.walk r d t...
利用遞迴刪除目錄及其子目錄及檔案
void delpath cstring strpath try catch if handle else while findnextfile handle,sr findclose handle removedirectory strpath else cfilefind ff int natt...