Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
419 views
in Technique[技术] by (71.8m points)

contextmenu - Create windows right click context menu for SPECIFIC folders

How can I create a context menu that appears for files/folders inside a particular folder.
Say there is a directory "D:RandomCodes"
How do I create a custom context menu item "Open in MyApp" for any file/folder inside this? This menu item should not appear for any other directory. I know if I add the entry in HKCR/Directory/Shell, it'll work, but then it'll appear for all files and folders everywhere. Please guide me through this.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

example:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTFoldershellNetBeans]
"AppliesTo"="System.ItemPathDisplay:"NetBeansProjects""
@="Open with NetBeans"

[HKEY_CLASSES_ROOTFoldershellNetBeanscommand]
@=""C:\Program Files\NetBeans 7.2.1\bin\netbeans64.exe" --open "%1""

more info here:

http://msdn.microsoft.com/en-us/library/cc144171%28VS.85%29.aspx


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...