Aspose.Modules.AsposeDotNetNukeContentExport.View.GetPortalRootSavePath C# (CSharp) Méthode

GetPortalRootSavePath() private méthode

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