Aspose.Modules.AsposeDotNetNukeContentExport.View.GetPortalRootSavePath C# (CSharp) Method

GetPortalRootSavePath() private method

private GetPortalRootSavePath ( ) : string
return string
        private string GetPortalRootSavePath()
        {
            string rootPath = Server.MapPath(PortalSettings.HomeDirectory) + "\\" + "AsposeExport";
            if (!Directory.Exists(rootPath))
                Directory.CreateDirectory(rootPath);
            return rootPath;
        }