Is there a good way to use watchFile on a file who is located on other webserver without downloading it? If not, then how can I check the file size changes of a remote file without downloading it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, you can do an HTTP HEAD request. A HEAD request is a GET that requests the HTTP Header only and not the body. Having the header, you could read the Content-Length or the Date attribute. (However Content-Length isn't always set correctly.) Here is how to do HEAD requests with node.js: Getting HTTP headers with node.js |
|||||
|
HEADrequest, inspecting theContent-Lengthin the response? – lanzz Oct 3 '12 at 10:12