如何知道ftp文件夹中的文件数?

时间:2013-06-10 03:18:30

标签: ios ftp

当我的应用程序启动时,我需要比较ftp上的文件数和我的CoreData实体中的数据数。如果ftp上的文件数量超过实体中的数据数量,应用程序将开始下载。

如何知道我的ftp文件夹中json文件的数量?

修改

这是与ftp的连接代码:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"ftp:...json"]];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];

NSError *error = nil;
if (!responseData) {
    return;
}

NSDictionary *ingredientsDictionary = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];
if (!ingredientsDictionary) {
    return;
}

//inserting to CoreData

0 个答案:

没有答案