B4J Question [B4J] how to get widows desktop folder, ie: "C:\Users\abc\Desktop"

Solution
This will work on most computers:
B4X:
Dim desktop As String = File.Combine(GetSystemProperty("user.home", ""), "Desktop")
If File.IsDirectory(desktop, "") Then
    Log(desktop)
End If
Top