I want to add a context menu item to the windows explorer context menu for all "jpg" files .The name of the context menu item will be 'process JPEG' when the user clicks this,a main executable will be invoked.The problem is i have already created the main c# executable and its not run only via context menu it can be run independently.I want to pass the file name or file-names which the user select and clicks the context menu command and to the main executable,so that the main executable will be able to get the files using some method and process those.I have done the following to integrate the context menu-Please help me out
public static void Register(
string fileType, string shellKeyName,
string menuText, string menuCommand)
{
Debug.Assert(!string.IsNullOrEmpty(fileType) &&
!string.IsNullOrEmpty(shellKeyName) &&
!string.IsNullOrEmpty(menuText) &&
!string.IsNullOrEmpty(menuCommand));
// create full path to registry location
string regPath = string.Format(@"{0}\shell\{1}", fileType, shellKeyName);
// add context menu to the registry
using (RegistryKey key = Registry.ClassesRoot.CreateSubKey(regPath))
{
key.SetValue(null, menuText);
}
// add command that is invoked to the registry
using (RegistryKey key = Registry.ClassesRoot.CreateSubKey(
string.Format(@"{0}\command", regPath)))
{
key.SetValue(null, menuCommand);
}
}