I'm trying to export the contents of folders in a directory to a CSV. The issue I'm running into is that I can't figure out how to get the export to 2 different paths.
Simply adding another Export-Csv just adds a empty Csv to the 2nd path.
Get-ChildItem -Path *root_path* -Filter *.zip -Recurse |
Select-Object BaseName, CreationTime |
Export-Csv -Path "*path1*_$((Get-Date).ToString(' yyyy-MM-dd HHmmss')).csv"
Export-Csv -Path *path2*_$((Get-Date).ToString(' yyyy-MM-dd HHmmss')).csv
It's because econd export is not part of the pipeline. You could store the results first and then export them.