using System.Collections.Specialized; using System.IO; namespace UmbracoExamine.LocalStorage { /// /// Used to resolve the local storage folder /// public interface ILocalStorageDirectory { DirectoryInfo GetLocalStorageDirectory(NameValueCollection config, string configuredPath); } }