initialize method
Initialize the file manager
Implementation
Future<void> initialize() async {
final documentsDir = await getApplicationDocumentsDirectory();
_baseDirectory = Directory(path.join(documentsDir.path, 'RunAnywhere'));
await _createDirectoryStructure();
}