Skip to main content

Documentation Index

Fetch the complete documentation index at: https://rajanand.org/llms.txt

Use this file to discover all available pages before exploring further.

Create Folders in PowerShell

create_folders.ps1
# Change the path to your desired loaction
cd D:\Raj\PowerShell\ 

# Add the folder names you want to create
$folders = @("001", "002", "003") 

foreach ($folder in $folders) {
    New-Item -ItemType Directory -Path $folder -Force | Out-Null
}

Write-Host "Folders created successfully."