Apps
Apps

Reputation: 3389

Error while trying to export a file from SVN

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

Answers (1)

Karis Sr.
Karis Sr.

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

Related Questions