newDirectory method
Create new directory at currentPath
Implementation
@override
Future<ExplorerDirectory> newDirectory(String name) async {
final directory = Directory(p.join(currentPath, name));
await directory.create();
return ExplorerDirectory(
path: directory.path,
);
}