Post by BennyI'm new to powershell,
How to get subdir items with full path name?
Thank you!
Some examples.
For a specific Path:
get-childitem C:\ | foreach-object -process { $_.FullName }
get-childitem -recurse | foreach-object -process { $_.FullName }
get-childitem -recurse -force | foreach-object -process { $_.FullName }
Ciao!
Claudio