0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

chatGPTにディレクトリ構成図を表示させる

Posted at

①以下の質問内容や構成図例をchatGPTに投げます
②さらに自分が表示してほしい図の
パスとディレクトリの内容を投げて依頼すればよいです。

●質問内容

今はVSCodeを使用していますが、pwdとlsで抽出したパスとディレクトリ内のファイルやフォルダを、以下に提示したディレクトリ構成図の例の様にルールに従いテキストベースで図式に変換できますか?

パス
[ec2-user@ip-123-45-67-890 testProject]$ pwd
/var/www/html/testProject

内容
[ec2-user@ip-123-45-67-890 testProject]$ ls
components node_modules package.json README.md store
ecosystem.config.js nuxt.config.js pages static yarn.lock

変換ルール
・ディレクトリと次のディレクトリは「パイプ」を使う
・ディレクトリと次のディレクトリでインデントする
・開いていないディレクトリは「+」を使う
・「.」拡張子のついているのはファイルで、
・「.」拡張子無しがディレクトリ

/var
|
/www
|
/html
|
/testProject
|
+ components
+ node_modules
package.json
README.md
+ store
ecosystem.config.js
nuxt.config.js
+ pages
+ static
yarn.lock

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?