Folder() private method

private Folder ( string path, bool autoCreate ) : IFolderInfo
path string
autoCreate bool
return IFolderInfo
Beispiel #1
0
        /// <summary>
        /// Get the folder specified in App.Settings (BasePath) combined with the module's ID
        /// Will create the folder if it does not exist
        /// </summary>
        internal IFolderInfo Folder(string subFolder, bool autoCreate)
        {
            var path = GeneratePath(subFolder);

            return(_adamManager.Folder(path, autoCreate));
        }