listDirectoryContentOnlyNames method

Future<List<String>> listDirectoryContentOnlyNames()

Returns the content names of the current directory cmd refer to the used command for the server, there is servers working with MLSD and other with LIST for detailed content

Implementation

Future<List<String>> listDirectoryContentOnlyNames() {
  return FTPDirectory(_socket).directoryContentNames();
}