AcadLib.IO.Path.GetSharedCommonFolder C# (CSharp) Method

GetSharedCommonFolder() private method

private GetSharedCommonFolder ( string pluginName ) : string
pluginName string
return string
        public static string GetSharedCommonFolder([NotNull] string pluginName)
        {
            var pluginFolder = System.IO.Path.Combine(PikSettings.ServerShareSettingsFolder, pluginName);
            if (!Directory.Exists(pluginFolder))
            {
                try
                {
                    Directory.CreateDirectory(pluginFolder);
                }
                catch (Exception ex)
                {
                    Logger.Log.Error(ex, $"GetSharedCommonFolder - pluginName={pluginName}");
                }
            }

            return pluginFolder;
        }