Aqueduct.Appia.Host.HtmlExporter.InitialiseExportPath C# (CSharp) Method

InitialiseExportPath() private method

private InitialiseExportPath ( ) : void
return void
        private void InitialiseExportPath()
        {
            Log("InitialisingExportPath");
            string exportPath = Path.IsPathRooted(_exportPath) ? _exportPath : Path.Combine(_basePath, _exportPath);

            if (Directory.Exists(exportPath))
                Directory.Delete(exportPath, true);

            Directory.CreateDirectory(exportPath);
        }