Saving various files in different folders into one single folder using powershell
Advertisements I have a 3 folders here with 3 files. Within each there is a csv file, I want to save them all into a destination folder without having to open each folder and drag and drop the file into the destination folder. I attempted this. $destination = "C:\Desktop\Test" $sourcefiles = get-childitem -recurse foreach ($file… Read More Saving various files in different folders into one single folder using powershell