Aspose.Modules.AsposeDotNetNukeContentExport.View.GetPortalRootSavePath C# (CSharp) Метод

GetPortalRootSavePath() приватный Метод

private GetPortalRootSavePath ( ) : string
Результат string
        private string GetPortalRootSavePath()
        {
            string rootPath = Server.MapPath(PortalSettings.HomeDirectory) + "\\" + "AsposeExport";
            if (!Directory.Exists(rootPath))
                Directory.CreateDirectory(rootPath);
            return rootPath;
        }