Reputation: 125
I am developing an app for an iPhone in Xcode 5. I want to download multiple files from the ftp server once a week only if they are changed. I am using performFetchWithCompletionHandler() and BlackRaccoon to download just one file. How can I download multiple files using BlackRaccoon and how can I check modified date of the files?
Upvotes: 0
Views: 1500
Reputation: 3273
You can use the below one to download multiple files FTP, here is the link for the source code: https://github.com/Hackmodford/SCRFTPRequest
Upvotes: 1
Reputation: 1780
Go To this Link it may help you
- (void) downloadM_lFiles
{
NSData *ftpM_lData = [NSData dataWithContentsOfFile:[FTPHelper sharedInstance].filePath];
}
For Modified date use CFFTPSample Please vote up if u get desired answer.
Upvotes: 0