Dart
Dart
Get Number of FIles in Directory, not including sub-directories
See more FTP Examples
_LANGUAGE_ example demonstrating how to get the number of files in a directory not including sub-directories.Chilkat Dart Downloads
import 'package:chilkat/chilkat.dart';
void main() {
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
final ftp = CkFtp2();
ftp.hostname = 'ftp.example.com';
ftp.username = 'login';
ftp.password = 'password';
// Connect and login to the FTP server.
try {
ftp.connect();
} on ChilkatException catch (e) {
print(e.lastErrorText);
return;
}
// The ListPattern property is our directory listing filter.
// The default value is "*", which includes everything.
print(ftp.listPattern);
// Fetch the current remote directory contents by
// calling GetDirCount
final n = ftp.getDirCount();
if (n < 0) {
print(ftp.lastErrorText);
return;
}
if (n > 0) {
// Loop over the directory contents, incrementing the count
// each time it is NOT a directory.
var fileCount = 0;
for (var i = 0; i < n; i++) {
// Is this NOT a sub-directory?
if (!ftp.getIsDirectory(i)) {
fileCount++;
// Display the filename
print(ftp.getFilename(i));
}
}
print('Total number of files = $fileCount');
}
ftp.disconnect();
}