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
Since you're using Windows XP, Windows PowerShell is an option.
(Get-Item filespec ).Length
or as a function
function Get-FileLength { (Get-Item $args).Length } Get-FileLength filespec