Two ways are as follows
Using PowerShell windows command
Move-Item -Path "SourcePath" -Destination "DestinationPath"
In above command SourcePath is the full path to the file you want to move e.g. C:\xyz.png and DestinationPath is the full path to the destination folder where you want to move the file e.g. E:\FolderName
Using linux command as some commands are supported in windows powershell
mv "SourcePath" "DestinationPath"
In above command SourcePath is the full path to the file you want to move and DestinationPath is the full path to the destination folder where you want to move the file.
note: Sometimes double quotes symbols are not required in command and sometimes they are required.