mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
2 Bug Fixes (#112)
Add a try-catch in ReadAllLines to handle a read failure if a file is locked. Add a check for a non-existing export folder when exporting and prompt for new path if it doesn't exist.
This commit is contained in:
parent
5bbf2f50de
commit
639ad72fb4
@ -420,6 +420,8 @@ namespace Observatory
|
||||
private List<string> ReadAllLines(string path)
|
||||
{
|
||||
var lines = new List<string>();
|
||||
try
|
||||
{
|
||||
using (StreamReader file = new StreamReader(File.Open(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite)))
|
||||
{
|
||||
while (!file.EndOfStream)
|
||||
@ -427,6 +429,11 @@ namespace Observatory
|
||||
lines.Add(file.ReadLine());
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (IOException ioEx)
|
||||
{
|
||||
ReportErrors(new List<(Exception, string, string)>() { (ioEx, path, "<reading all lines>") });
|
||||
}
|
||||
return lines;
|
||||
}
|
||||
|
||||
|
@ -112,7 +112,7 @@ namespace Observatory.UI.ViewModels
|
||||
try
|
||||
{
|
||||
var exportFolder = Properties.Core.Default.ExportFolder;
|
||||
if (string.IsNullOrEmpty(exportFolder))
|
||||
if (string.IsNullOrEmpty(exportFolder) || !Directory.Exists(exportFolder))
|
||||
{
|
||||
exportFolder = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user