Recursive create directories by Powershell
Jun 22, 2022
--
Just use the command in windows powershell
Command
New-Item -ItemType Directory 'Path'
Example
New-Item -ItemType Directory 'D:\dev\test1\test2'
Note for me
--
Just use the command in windows powershell
Command
New-Item -ItemType Directory 'Path'
Example
New-Item -ItemType Directory 'D:\dev\test1\test2'
Note for me