I am using the cURL app to download multiple csv files. I want to find a way to check if the file exists on the ftps site before kicking off the download. If it doesnt exist I would like to find a way for cURL to check again at regular intervals. I am trying to stick to using cURL commands for this I am really not good at .Net programming. Any help would be appreciated

link|improve this question
feedback

1 Answer

$ curl ftp://[host]/[path] --ssl --head

(you might also need -k)

It will return an error if the file doesn't exist. It will not keep checking, it will only check once so you need to do the repeated checking using some scheduler/cron/script or whatever.

link|improve this answer
Is this a curl command that i can put directly into the curl command line? – arthur chitanda May 10 '11 at 17:59
Ok I got it thanks a lot Daniel. – arthur chitanda May 10 '11 at 18:20
So what about an accept or bump? – Daniel Stenberg May 19 '11 at 21:40
feedback

Your Answer

 
or
required, but never shown

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