Locate and Delete only .csv from the machine
-
How to locate and delete the .csv files from the machine ?I need delete all the .csv files from the machine through the help of the Powershell ?
Any suggestions ?Once deleted the new .csv files will come as entrance and that needs to be copied to the folder
Aim : Delete old .csv files from the machine and copy the new .csv to the new location
-
You would use
Remove-Item
to delete old .csv files and then you would useCopy-Item
to copy new .csv files to a new location. -