Files
DP44/DataPRO/Modules/InstallerCustomActions/.svn/pristine/22/2233d7b6d8944375eb23c7ce211c6ec35556208c.svn-base

21 lines
396 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System;
using DTS.Common.Classes.WindowsFolders;
namespace OpenFolder
{
class Folder
{
private static void Main(string[] args)
{
try
{
WindowsFolder.OpenManualsFolder(args[0]);
}
catch (Exception ex)
{
//eat exception
}
}
}
}