makeDirectory method

Future<bool> makeDirectory(
  1. String sDirectory
)

Create a new Directory with the Name of sDirectory in the current directory.

Returns true if the directory was created successfully Returns false if the directory could not be created or already exists

Implementation

Future<bool> makeDirectory(String sDirectory) {
  return FTPDirectory(_socket).makeDirectory(sDirectory);
}