Tip: You can combine two paths using the Join-Path cmdlet.
1 2 3 |
$parentFolder = "C:\Demo" $childFolder = "Reports" Join-Path -Path $parentFolder -ChildPath $childFolder |
======
Documentation
Tip: You can combine two paths using the Join-Path cmdlet.
1 2 3 |
$parentFolder = "C:\Demo" $childFolder = "Reports" Join-Path -Path $parentFolder -ChildPath $childFolder |
======
Documentation