Open CMD
Type

> cd yourpath > powershell
We need to replace all files with .download with empty string “”
get-childitem *.download | foreach { rename-item $_ $_.name.replace(".download","") }
Published in the Ahmad Naser ecosystem. Estimated reading time: 1 minute.
Open CMD
Type

> cd yourpath > powershell
We need to replace all files with .download with empty string “”
get-childitem *.download | foreach { rename-item $_ $_.name.replace(".download","") }
Leave a Reply