existFile method

Future<bool> existFile(
  1. String sFilename
)

check the existence of the file sFilename from the server

Implementation

Future<bool> existFile(String sFilename) {
  return FTPFile(_socket).exist(sFilename);
}