DesktopFile.url

URL to access.

class DesktopFile
@nogc @safe const nothrow
string
url
()

Return Value

Type: string

The value associated with "URL" key.

Examples

auto df = new DesktopFile(iniLikeStringReader("[Desktop Entry]\nType=Link\nURL=https://github.com/"));
assert(df.url() == "https://github.com/");

Meta