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?

ディレクトリ一覧作成に便利なセット

0
Posted at

ディレクトリマップを作成するのに便利なコマンド一覧とそれを利用したエクセルテンプレートを紹介します。

ファイル一覧を出力するコマンド(コピペ用)

image.png

ファイル一覧を出力するコマンド

dir /b /a-d /s

ディレクトリを指定してファイル出力する場合(コマンドはテキストファイルを保存したい場所を開く)
dir C:\Users\hoge\Desktop /b /a-d /s > file_list.txt

ツリーを出力するコマンド(コピペ用)

image.png

ツリーを出力するコマンド

tree /f

ディレクトリを指定してファイル出力する場合(コマンドはテキストファイルを保存したい場所を開く)
tree C:\Users\hoge\Desktop /f > file_list.txt

ディレクトリ一覧を作成するエクセルテンプレート

簡単ですが、ドメインを含めたURLと相対URLの一覧を出力する為のテンプレートです。

使い方
①dirコマンドで出力したファイル一覧をテキストエディタで置換する。
・¥を/に
・不要な部分(一覧に載せないディレクトリ部分)を削除

image.png

↓↓↓

image.png

②エクセルのパス列に先ほどのファイル一覧を貼り付け、ドメインの枠にURLの頭部分を入れる。すると、URL列にURL一覧が作成される。

image.png


参考:

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?