i have ben working on a kind of program installer, that shut move some files into the appdata folder, but i can't find the way its done:
but this just moves the folder to C:/Test/%appdata%/testCode:If System.IO.Directory.Exists("C:\Test") Then
System.IO.Directory.Move("C:\Test\", "%appdata%")
MsgBox("Test installed!")
System.IO.Directory.Delete("C:\Test\")
Else
MsgBox("Error: Test did not install correct!")
End If
how to make so it moves the the users appdata folder witch is found at: C:/users/LOCALUSER/Appdata
