I want to know how to get files with a given dynamic path and not a specific path.
For example, most beginners like me would use the complete path to move files to other folder like:
Dim path As String = "c:\temp\mine\MyTest.txt"
Dim path2 As String = "c:\temp2\mine\MyTest.txt"
But this time i want it to code the path like this:
Dim path As String = "..\mine\MyTest.txt"
Dim path2 As String = "..\mine\MyTest.txt"
is this possible in vb.net?
please help me guys.. i really need to do it like this.. i already have the codes for the specific path..