I want to access my user's folder, something like; C: \ Users \ felix But without knowing the user "felix" The language is visual basic. Thanks!
I want to access my user's folder, something like; C: \ Users \ felix But without knowing the user "felix" The language is visual basic. Thanks!
If you only need to remove the user's name you can use:
Environment.UserName
Update:
Dim ruta As String = "C:\Users\" + Environment.UserName