tree [drive:][path] [/f] [/a]
/f 顯示每個資料夾中檔案的名稱。(帶副檔名)
/a 使用 ascii 字元,而不使用擴充套件字元。
tree -f > list.txt-- 將帶副檔名的檔案目錄輸出到list.txt檔案中
使用方法
開始——》執行——》輸入cmd回車
然後比如我要匯出 我的電腦 e盤 下的php/htdocs/task資料夾
那麼我輸入 e: 回車
然後輸入cd php/htdocs/task 回車
然後輸入tree -f >tree.txt 回車
那麼在 task資料夾下面就生成了 tree.txt檔案
內容如下
資料夾 path 列表
卷序列號為 a889-6d07
e:.│ tree.txt
├─admin
│ │ admin.inc.php
│ │ task.inc.php
│ └─templates
│ header.tpl.php
│ task_add.tpl.php
│ task_edit.tpl.php
│ task_log.tpl.php
│ task_manage.tpl.php
├─include
│ common.inc.php
│ task.class.php
├─install
│ chmod.txt
│ config.inc.php
│ extention.inc.php
│ mysql.sql
└─uninstall
delete.txt
mysql.sql
如果只想要資料夾的目錄 ,那麼最後一步輸入 tree >tree.txt就可以了
PHP 遞規列出檔案目錄
php 檔案操作 dir f file f php.txt if file exists dir println exists else println not exists if is dir file println this is dir elseif is file file println...
ls 列出檔案目錄(可以含子目錄)及檔案的完整路徑
1 列出當前目錄的檔案 資料夾完整路徑 ls 1 awk i pwd 2 列出當前目錄及子目錄的檔案 資料夾完整路徑 ls r awk i pwd 2b 列出當前目錄及子目錄下的資料夾完整路徑 ls fr grep sed s pwd 3 用find實現,好像執行要慢些 find name exec...
Python列出資料夾中的檔案
幾乎所有的關於作業系統的內容可以在python 官方文件中找到 其中os.path被單獨列出 os.listdir path 可以列出path目錄中的檔名子資料夾 os.path.isfile 可以用來判斷是否是檔案。於是可以結合,用來只遍歷資料夾中的檔案 1 from os import list...