Sample code for 30+ languages & platforms
Objective-C

Count Files in a Remote FTP Directory

See more FTP Examples

Demonstrates the Chilkat Ftp2.GetDirCount method, which returns the number of files and directories in the current remote directory. It takes no arguments; the first call retrieves the listing, and the count reflects the case-insensitive ListPattern filter. A negative return indicates failure.

Background: GetDirCount is the entry point to Chilkat's index-based directory API: its first call fetches the listing for the current directory into a cache, and the returned count establishes the valid index range (0 through count - 1) for the accessor methods that read names, sizes, and attributes. The ListPattern property narrows the listing to matching names before counting, which is how you list, say, only *.html without filtering in your own code.

Chilkat Objective-C Downloads

Objective-C
#import <CkoFtp2.h>
#import <NSString.h>

BOOL success = NO;

//  Demonstrates the Ftp2.GetDirCount method, which returns the number of files and directories in
//  the current remote directory's listing.  It takes no arguments.  The first call retrieves the
//  listing; the count reflects the case-insensitive ListPattern filter.

CkoFtp2 *ftp = [[CkoFtp2 alloc] init];

ftp.Hostname = @"ftp.example.com";
ftp.Username = @"myFtpLogin";

//  Normally you would not hard-code the password in source.  You should instead obtain it
//  from an interactive prompt, environment variable, or a secrets vault.
ftp.Password = @"myPassword";

success = [ftp Connect];
if (success == NO) {
    NSLog(@"%@",ftp.LastErrorText);
    return;
}

success = [ftp ChangeRemoteDir: @"public_html"];
if (success == NO) {
    NSLog(@"%@",ftp.LastErrorText);
    return;
}

//  Optionally filter the listing with a wildcard pattern.  "*" (the default) matches everything.
ftp.ListPattern = @"*.html";

int n = [[ftp GetDirCount] intValue];
if (n < 0) {
    NSLog(@"%@",ftp.LastErrorText);
    return;
}

NSLog(@"%@%d",@"Matching entries: ",n);

//  The count defines the valid index range 0 through n-1 for the indexed accessor methods.
int i;
for (i = 0; i <= n - 1; i++) {
    NSString *name = [ftp GetFilename: [NSNumber numberWithInt: i]];
    NSLog(@"%@",name);
}

success = [ftp Disconnect];
if (success == NO) {
    NSLog(@"%@",ftp.LastErrorText);
    return;
}