I want to check the last modified date on a file on a web server. Any help would be great. Thanks.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
|||
|
|
|
This will first download the whole file from the server. I have modified the code myself in order to just get the header info. Here's the code
|
||||
|
|
|
You can have the CMS write a file containing a date of modification. You can then download that file using a number of [:initWithURL] methods. Compare that date to the whatever stored date that you have. I suppose you can also ftp the desired file. Then use NSFileManager to look at properties of the file, NSString *NSFileModificationDate will give you a date that you can compare with whatever stored date you want. You can search SO for ftp solutions. |
|||
|
|