Example #1
0
        /// <summary>
        /// Gets the folder path for the specified special folder
        /// </summary>
        /// <param name="folder">Special folder to retrieve the path for</param>
        /// <param name="generator">Generator to get the folder path with</param>
        /// <returns>Path of the specified folder</returns>
        public static string GetFolderPath(EtoSpecialFolder folder, Generator generator = null)
        {
            var handler = generator.CreateShared <IEtoEnvironment> ();

            return(handler.GetFolderPath(folder));
        }
Example #2
0
        public static string GetFolderPath(EtoSpecialFolder folder, Generator generator)
        {
            var handler = generator.CreateShared <IHandler>();

            return(handler.GetFolderPath(folder));
        }