Removes group by name. You can't remove "Desktop Entry" group with this function.
auto df = new DesktopFile(); df.addGroup("Action"); assert(df.group("Action") !is null); df.removeGroup("Action"); assert(df.group("Action") is null); df.removeGroup("Desktop Entry"); assert(df.desktopEntry() !is null);
See Implementation
Removes group by name. You can't remove "Desktop Entry" group with this function.