Hi, i am trying to move a file (test.txt) from say from:
I understand from the MSDN forum, i can use this
But it doesnt seem to work..
TOC:\folder_A\test.txt
How am i suppose to do so?C:\folder_B\test.txt
I understand from the MSDN forum, i can use this
File.Copy(pathA, pathB) OR Directory.Move(pathA, pathB) where pathA = C:\folder_A\test.txt and pathB = C:\folder_B\test.txt
But it doesnt seem to work..
