web-dev-qa-db-ja.com

ASCII「プリティ」ディレクトリツリーを作成するためのライブラリ?

次のようなディレクトリツリーの視覚化を簡単に作成できる* nixツールまたはPerl/phpライブラリはありますか?

www
|-- private
|    |-- app 
|    |    |-- php
|    |    |    |-- classes
|    |    |    +-- scripts
|    |    |-- settings
|    |    +-- sql
|    +-- lib
|         +-- ZendFramework-HEAD
+-- public
    |-- css
    |-- images
    +-- scripts
70
Alan Storm

nix Tree/Linux Tree のこの例はどうですか:

ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/   /' -e 's/-/|/'  
99
bobbymcr

そのonelinerはかなりクールです。tree utilを使用することをお勧めします。

bash-3.2$ mkdir -p this/is/some/nested/example
bash-3.2$ mkdir -p this/is/another/super/nested/example
bash-3.2$ mkdir -p this/is/yet/another/example
bash-3.2$ mkdir -p this/is/some/nested/other/example
bash-3.2$ tree this
this
`-- is
    |-- another
    |   `-- super
    |       `-- nested
    |           `-- example
    |-- some
    |   `-- nested
    |       |-- example
    |       `-- other
    |           `-- example
    `-- yet
        `-- another
            `-- example

13 directories, 0 files
76
user1116793

RecursiveTreeIterator クラスを参照してください

RecursiveIteratorを反復処理してASCIIグラフィックツリーを生成できます。

$treeIterator = new RecursiveTreeIterator(
    new RecursiveDirectoryIterator('/path/to/dir'),
    RecursiveTreeIterator::SELF_FIRST);

foreach($treeIterator as $val) echo $val, PHP_EOL;

出力は次のようになります(私のマシンのc:\ phpを使用):

|-c:\php5\cfg
|-c:\php5\data
| |-c:\php5\data\Base
| | \-c:\php5\data\Base\design
| |   |-c:\php5\data\Base\design\class_diagram.png
| |   \-c:\php5\data\Base\design\design.txt
| |-c:\php5\data\ConsoleTools
| | \-c:\php5\data\ConsoleTools\design
| |   |-c:\php5\data\ConsoleTools\design\class_diagram.png
| |   |-c:\php5\data\ConsoleTools\design\console.png
| |   |-c:\php5\data\ConsoleTools\design\console.xml
…
16
Gordon

私はこの質問が何年も前に答えられたことに気づきましたが、 tree と呼ばれるこのプログラムを見つけました。

16
Ibrahim

exa with --tree は素晴らしい仕事をします:

exa --tree ~/tmp/public/

<dir>
├── aboutme
│  └── index.html
├── atrecurse
│  └── index.html
├── base.css
├── html5
│  ├── cat-and-mouse
│  └── frantic
│     ├── css
│     │  └── main.css
6
andy boot

クールPythonそれを行うスクリプト: http://code.activestate.com/recipes/217212/

1
zcopley

App :: Asciio をご覧ください

0
draegtun