In: Computer Science
SOULTION:
New-Item -Path "." -Name "Documents" -ItemType "directory"
-Force
cd Documents
New-Item -Path "." -Name "Personal" -ItemType "directory"
-Force
New-Item -Path "." -Name "Business" -ItemType "directory"
-Force
New-Item -Path ".\Personal" -Name "Family" -ItemType "directory"
-Force
New-Item -Path ".\Personal" -Name "Education" -ItemType "directory"
-Force
New-Item -Path ".\Personal" -Name "Finance" -ItemType "directory"
-Force
New-Item -Path ".\Personal" -Name "Health" -ItemType "directory"
-Force
New-Item -Path ".\Business" -Name "Client" -ItemType "directory"
-Force
New-Item -Path ".\Business" -Name "Product" -ItemType "directory"
-Force
New-Item -Path ".\Business" -Name "Finance" -ItemType "directory"
-Force
Sample output:
THANK U