1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

フォルダの階層構造の図をテキストで表現するツールのメモ

Posted at

こういうフォルダの階層をテキストで表現しているやつをよく見かけるので、記事を書く際に同じように書く方法を調べた備忘録として残す

.
└── simplechatpage/
    ├── static/
    │   └── logo.png
    ├── templates/
    │   └── index.html
    └── app.py

VSCodeの拡張機能

Ascii Tree Generatorという拡張機能

こういうテキストを書けば一発変換してくれるツール

# simplechatpage/
## static/
### logo.png
## templates/
### index.html
## app.py

VSCodeの中で完結させたい場合はこっちがよさそう

tree.nathanfriend.io

Web上のサービス

タブでインデントを調整しながら書くタイプ。シンプルで使いやすいです。
VSCodeにごちゃごちゃ混ぜたくないって人はこっちがよさそう
image.png

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?