So... I am still sort of a newbie in Access.. and I have been trying to copy a folder from one location to the next.... So far this is sort of what I got
Dim FromPath As String 'Current Folder Location'
Dim ToPath As String 'Destination Location'
FromPath = C:/Documents and Settings/...../Folder1
ToPath = C:/Documents and Settings/..../TestFolder
FileCopy FromPath, ToPath 'Copy File'
Now everytime I run the code I get an error that says "Run-time error '75': Path/File Access error"...
I get the feeling I am using the function incorrectly... ?.. I am trying to move Folder1 into TestFolder
..
Any ideas?![]()