Editing the Registry for .mp3
file, with refrence from answer given here :
Create registry entry to associate file extension with application in C++
i wrote the following code in c++ , to add open_wihtNewAPp
in contex menu for .mp3 files.
Registry::SetValue("HKEY_CURRENT_USER\\Software\\Classes\\mp3file\\shell\\open_wihtNewAPp\\command", nullptr, "C:\\Users\\Devansh\\Desktop\\GUI.exe \"%1\"");
Registry::SetValue("HKEY_CURRENT_USER\\Software\\Classes\\.mp3", nullptr, "mp3file");
But the option is not getting added in context menu.
I checked in regedit
as well, the key has been added successfully.