Throw error messages when exception occurs while browsing an archive
This commit is contained in:
parent
6cc947b47e
commit
875b7b7caa
1 changed files with 26 additions and 13 deletions
|
@ -238,6 +238,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
async Task<HashSet<FileManagerDirectory>> GetArchiveDirectoriesAsync(Guid archiveId)
|
async Task<HashSet<FileManagerDirectory>> GetArchiveDirectoriesAsync(Guid archiveId)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
var entries = await ArchiveService.GetContents(archiveId);
|
var entries = await ArchiveService.GetContents(archiveId);
|
||||||
var directories = new HashSet<FileManagerDirectory>();
|
var directories = new HashSet<FileManagerDirectory>();
|
||||||
|
@ -258,6 +260,17 @@
|
||||||
root
|
root
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
catch (FileNotFoundException ex)
|
||||||
|
{
|
||||||
|
MessageService.Error("Could not open archive! Is it missing?");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageService.Error("An unknown error occurred trying to open the archive");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new HashSet<FileManagerDirectory>();
|
||||||
|
}
|
||||||
|
|
||||||
string GetEntryName(IFileManagerEntry entry)
|
string GetEntryName(IFileManagerEntry entry)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue