Reputation: 3389
Dear All, I'm trying to export a file from SVN using the following command
C:\Documents and Settings\Administrator>svn export http://<SVN_LOCATION>/svn/Project/mail/TestProject/Test.java C:/LocalFolder/SVN_Sync --depth empty
I'm getting the following error when I try to perform this. svn: Can't move 'C:\LocalFolder\tempfile.tmp' to 'C:\LocalFolder\SVN_Sync': Access is den ied.
I could not find any solution for this problem. Can some one please help me to fix this?
Upvotes: 2
Views: 2688
Reputation: 171
Just add the name of the file.
svn export http:///svn/Project/mail/TestProject/Test.java C:/LocalFolder/SVN_Sync/Test.java --depth empty
Upvotes: 3