Lidarr/NzbDrone/Providers/EnviromentProvider.cs

50 lines
1.3 KiB
C#
Raw Normal View History

using System;
using System.IO;
using System.Reflection;
namespace NzbDrone.Providers
{
public class EnviromentProvider
{
public virtual String LogPath
{
get { return Environment.CurrentDirectory; }
}
public virtual bool IsUserInteractive
{
get { return Environment.UserInteractive; }
}
public virtual string ApplicationPath
{
get
{
2011-10-13 02:24:30 +00:00
var dir = new FileInfo(Environment.CurrentDirectory).Directory;
while (!ContainsIIS(dir))
{
2011-10-13 02:24:30 +00:00
if (dir.Parent == null) break;
dir = dir.Parent;
}
if (ContainsIIS(dir)) return dir.FullName;
2011-10-13 02:24:30 +00:00
dir = new FileInfo(Assembly.GetExecutingAssembly().Location).Directory;
while (!ContainsIIS(dir))
2011-10-13 02:24:30 +00:00
{
if (dir.Parent == null) throw new ApplicationException("Can't fine IISExpress folder.");
dir = dir.Parent;
}
return dir.FullName;
}
}
private static bool ContainsIIS(DirectoryInfo dir)
{
return dir.GetDirectories("iisexpress").Length != 0;
}
}
2011-10-07 06:57:43 +00:00
}