回答:
Windows XPまたは7の場合、/F
スイッチはファイル名も表示します。
C:\>tree /?
Graphically displays the folder structure of a drive or path.
TREE [drive:][path] [/F] [/A]
/F Display the names of the files in each folder.
/A Use ASCII instead of extended characters.
ただし、/L
XPまたは7では有効なスイッチではないため、別のOSを使用していると思います。
私のUbuntu VM(11.10)にtree
は、プリインストールされていません。 sudo apt-get install tree
すぐに修正しました。その後tree -L 1
、望みどおりに機能しました-ファイルやディレクトリを含む現在のディレクトリだけのツリーが表示されました。-a
スイッチを追加すると、「非表示」ファイルも含まれます。のデフォルトの動作はtree
、ファイルとディレクトリの両方を表示することです。これは、-d
スイッチでのみディレクトリに変更できます。
詳細については、httpman tree
: //www.computerhope.com/unix/tree.htmをご覧ください。
問題が発生した場合、私はチェックをお勧めls
あなたのをpwd
確認そこに実際に作るためにあるそのディレクトリ内のファイルが。また、ファイルとフォルダーのアクセス許可を確認し、man
ページtree
でその他のオプションを確認してください。
それは私のためにファイルとディレクトリの両方をリストします:
[ben@ben-x220 ~/tmp/test]$ tree --version
tree v1.5.3 (c) 1996 - 2009 by Steve Baker, Thomas Moore, Francesc Rocher, Kyosuke Tokoro
[ben@ben-x220 ~/tmp/test]$ tree -L 1
.
├── dir1
├── file1
├── file2
└── file3
1 directory, 3 files
[ben@ben-x220 ~/tmp/test]$ tree
.
├── dir1
│ └── file4
├── file1
├── file2
└── file3
1 directory, 4 files
/L
Windows XPの有効なスイッチではありません。