Im trying to copy a users favorites directory up to the network using the follwing code:
Directory.Move("C:\Documents and Settings\" & userID & "\Favorites", "H:\favorites")
When this executes I get the following error:
Source and destination path must have identical roots. Move will not work across volumes.
Which obviously means Im using the wrong command. Could someone please fill me in on what command I need to use? Thanks.
Directory.Move("C:\Documents and Settings\" & userID & "\Favorites", "H:\favorites")
When this executes I get the following error:
Source and destination path must have identical roots. Move will not work across volumes.
Which obviously means Im using the wrong command. Could someone please fill me in on what command I need to use? Thanks.