using System; using System.Collections.Generic; using NzbDrone.Common.EnvironmentInfo; namespace NzbDrone.Common.Disk { public static class SystemFolders { public static List GetSystemFolders() { if (OsInfo.IsWindows) { return new List { Environment.GetFolderPath(Environment.SpecialFolder.Windows) }; } if (OsInfo.IsOsx) { return new List { "/System" }; } return new List { "/bin", "/boot", "/lib", "/sbin", "/proc", "/usr/bin" }; } } }