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