how can I check the size of file on server in bytes?

i need to do it for following

link|improve this question
Has already been answered : stackoverflow.com/questions/3518968/… – Nifle Aug 19 '10 at 6:59
yes one on SO is sovled. but I want to know how to check the file size to use it. – user46722 Aug 19 '10 at 7:10
Ahh... OK, I misread the question – Nifle Aug 19 '10 at 7:44
feedback

1 Answer

up vote 3 down vote accepted

Perform a HEAD request and check out the Content-Length http header. With curl that would be curl -I http://yoururl.com/yourfile.jpg

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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