user1554693
user1554693

Reputation: 125

download multiple files from ftp in Objective-C

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

Answers (2)

Keshav
Keshav

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

iamVishal16
iamVishal16

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

Related Questions