how can i check the size on a server?

0

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

i need to do it for following

user46722

Posted 2010-08-19T06:52:57.773

Reputation: 3

yes one on SO is sovled. but I want to know how to check the file size to use it. – user46722 – 2010-08-19T07:10:48.670

Ahh... OK, I misread the question – Nifle – 2010-08-19T07:44:56.150

Answers

3

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

Janne Pikkarainen

Posted 2010-08-19T06:52:57.773

Reputation: 6 717