tags:

views:

39

answers:

1

usually the desktop folder is something like:

C:\Users\username\Desktop\

is it possible to detect where the desktop folder is using vb.net?

+6  A: 

Quite simple:

Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)
Dmitry Brant
thanks dmitry you da man
I__