Files
DP44/Common/DTS.CommonCore/.svn/pristine/61/61f3a2369b773ce1a92c96dbd7a2b7fa99066bb3.svn-base
2026-04-17 14:55:32 -04:00

26 lines
860 B
Plaintext

using System;
using System.Diagnostics;
using System.IO;
namespace DTS.Common.Classes.WindowsFolders
{
public class WindowsFolder
{
/// <summary>
/// Open the folder containing all of the manuals. The default path is C:\DTS\DTS.Suite\(version)\DataPRO\Manuals,
/// but this function assumes that the Manuals folder is in the CurrentDirectory, which is always the case
/// (even when DataPRO is installed in a non-default location).
/// </summary>
public static void OpenManualsFolder(string path)
{
var manualsPath = Path.Combine(path, Constants.ManualsFolder);
Process.Start(new ProcessStartInfo()
{
FileName = Constants.WindowsExplorer,
Arguments = manualsPath
});
}
}
}