fixes unexistant directory case

This commit is contained in:
2016-09-05 00:24:43 +02:00
parent ef1804c06d
commit f4a50f4711

View File

@ -9,11 +9,13 @@ namespace Yavsc.Helpers
{
if (estimate?.Query?.PerformerProfile?.Performer == null)
return null;
var fsp = new PhysicalFileProvider(
Path.Combine(
var di = new DirectoryInfo(Path.Combine(
userFileDir,
estimate.Query.PerformerProfile.Performer.UserName
));
if (!di.Exists) return null;
var fsp = new PhysicalFileProvider(di.FullName);
return fsp.GetDirectoryContents(
Path.Combine(Constants.UserBillsFilesDir, estimate.Id.ToString())
);