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:

Code:
        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
but this just moves the folder to C:/Test/%appdata%/test

how to make so it moves the the users appdata folder witch is found at: C:/users/LOCALUSER/Appdata