1 write to _outputPath
CreateLayout (1)
13 references to _outputPath
CreateLayout (13)
Program.cs (13)
142Log($"Output: {_outputPath}");
146if (Directory.Exists(_outputPath))
148Directory.Delete(_outputPath, recursive: true);
150Directory.CreateDirectory(_outputPath);
170var managedDir = Path.Combine(_outputPath, "managed");
250var dashboardDir = Path.Combine(_outputPath, "dashboard");
270var dcpDir = Path.Combine(_outputPath, "dcp");
282var archivePath = Path.Combine(Path.GetDirectoryName(_outputPath)!, archiveName + ".tar.gz");
298var topLevelDir = Path.GetFileName(_outputPath);
299foreach (var filePath in Directory.EnumerateFiles(_outputPath, "*", SearchOption.AllDirectories))
301var relativePath = Path.GetRelativePath(Path.GetDirectoryName(_outputPath)!, filePath).Replace('\\', '/');
322Arguments = $"-czf \"{archivePath}\" -C \"{Path.GetDirectoryName(_outputPath)}\" \"{Path.GetFileName(_outputPath)}\"",