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?

Powershellで連番のフォルダを大量に作成する。

Posted at

概要

試験のエビデンス格納などで大量にフォルダが必要な際に一括で作成するPowershellコマンドです。

手順

  1. フォルダを作成する場所で右クリックをして、「ターミナルで開く」を選択
    image.png
  2. 以下のコマンドを貼り付け
    FCOUNT:作成するフォルダ数
    FNAME:作成するフォルダの名前。"TEST_"とするとTEST_001から作成され、空白の場合は数字のみのフォルダとなる
    4桁が必要な場合は「0:000」を「0:0000」にする
$FCOUNF = 100
$FNAME = "TEST_"
New-Item (1..${FCOUNF} | % { "${FNAME}{0:000}" -f $_} ) -ItemType Directory

警告が表示された場合は「強制的に貼り付け」を選択
image.png

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?