Is there a Windows command that will output the size in bytes of a specified file like this?
> filesize test.jpg 65212
I know that the d
In PowerShell you can do:
$imageObj = New-Object System.IO.FileInfo("C:\test.jpg") $imageObj.Length