vote up 3 vote down star

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 dir command outputs this information, but it outputs other information also.

I could easily write such a program but I would prefer to use a native Windows command if possible, or only what is available in a fresh install of Windows XP.

flag

77% accept rate

7 Answers

vote up 7 vote down check

If you are inside a batch script, you can use argument variable tricks to get the filesize:

filesize.bat:

@echo off
echo %~z1

This gives results like the ones you suggest in your question.

Type

help call

at the command prompt for all of the crazy variable manipulation options. Also see this article for more information.

Edit: This only works in Windows 2000 and later

link|flag
1  
Note, this will only work for one file. If you want to be able to pass in a mask to get the sizes of multiple files, change the second line to something like for %%I in (%1) do @echo %%~znI. – Patrick Cuff Jan 27 at 16:41
vote up 4 vote down

If you don't want to do this in a batch script, you can do this from the command line like this:

for %I in (test.jpg) do @echo %~zI

Ugly, but it works. You can also pass in a file mask to get a listing for more than one file:

for %I in (*.doc) do @echo %~znI

Will display the size, file name of each .DOC file.

link|flag
Nice, I was wondering how to get that to work from the command line – Mike Houston Jan 27 at 16:35
vote up 0 vote down

in powershell you can do this:

$imageObj = New-Object System.IO.FileInfo( “C:\test.jpg”)

$imageObj.Length

this should work

link|flag
It will work, but it ignores all the built-in capabilities of PowerShell for common tasks – Scott Weinstein Jan 27 at 16:59
You'd rather use Get-ChildItem test.jpg | Select-Object Length in Powershell. – Johannes Rössel May 19 at 6:16
vote up 0 vote down

Since you're using XP, Windows PowerShell is an option.

(Get-Item filespec ).Length

or as a function

function Get-FileLength { (Get-Item $args).Length }
Get-FileLength filespec
link|flag
vote up 0 vote down

ps: I don't think Powershell is included in a fresh install of XP. Unless you are imaging from a SP2 or later with Powershell already in there.

link|flag
vote up 0 vote down

Try This: forfiles /p C:\Temp /m file1.txt /c "cmd /c echo @fsize"

link|flag
vote up 0 vote down

in Powershell you SHOULD do this:

(Get-ChildItem C:\TEMP\file1.txt).Length

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.