CSV ファイルを使用してフォルダーをバッチ作成する小さなスクリプトを作成しました。しかし、別の方法でフォルダを作成している人を見ました。
CSV:
folder
4.1.1 Process
4.1.2 Score card
4.1.3 Strategy
4.1.4 Governance
4.1.5 Master plan Calendar
4.1.6 Budget follow up
4.1.7 Budget documentation
4.1.8 Benchmarkvision
4.1.9 Std Documentation
4.1.10 Layout
4.1.11 Project
4.1.12 Training
4.1.13 Team structure
4.1.14 Work shop
4.1.15 Tools
4.1.16 Problem solving
4.1.17 Presentation
4.1.18 Working data zone
4.1.19 meeting
4.1.20 S
4.1.21 Miscellenous
脚本:
#change the $folderlist path as it's a hard link.
$folderlist = Import-Csv "C:\folders.csv"
$rootpath = read-host "Enter the path of the root folder where the csv files will be created"
foreach ($folder in $folderlist){
$path = $rootpath+$folder.folder
new-item -type directory -path $path
}
非常に単純ですが、人々が私が$(_$.folder)
理解できない のようなものを使用しているのを見ました。$_
andを使用して別の方法を教えてくれる人はい%{ }
ますか?
私の質問が明確でない場合は、より多くの情報を提供してください。
ジョン