final FileSystemService fSS = InitialNaming.lookup(FileSystemService.NAME);
FatFileSystemType type = fSS.getFileSystemType(FatFileSystemType.ID);
return new FatFileSystem(device, false, type); // not readOnly !
} catch (IOException ioe) {
throw new FileSystemException("Formating problem", ioe);
} catch (ApiNotFoundException e) {
throw new FileSystemException("Formating problem", e);
} catch (NameNotFoundException e) {
throw new FileSystemException(e);
}
}