checkFolderExistence method

Future<bool> checkFolderExistence(
  1. String pDirectory
)

check the existence of the Directory with the Name of pDirectory.

Returns true if the directory was changed successfully Returns false if the directory could not be changed (does not exist, no permissions or another error)

Implementation

Future<bool> checkFolderExistence(String pDirectory) {
  return this.changeDirectory(pDirectory);
}