I tried and it's ok! Thanks for your kindly help
2010/12/1 Ryan Schmidt <subversion-20...@ryandesign.com> > > On Dec 1, 2010, at 06:51, embedmobile y wrote: > > > How can i export a file named a[.txt by SVN.EXE. > > When i try to use svn.exe to export a file whose name consists '[', it > will fail and error info as "svn: URL > 'svn://127.0.0.1/test/a[.txt<http://127.0.0.1/test/a%5B.txt>' > is not properly URI-encoded". > > If i use TSVN, it can export successfully. But i can only use CLI. So how > could i export such kind of file by svn.exe? > > My enviornment is winxp and SVN version 1.5.4 or 1.6.11. > > Thanks for your kindly help. > > Properly (percent-)encode the special characters in the URL, i.e.: > > svn://127.0.0.1/test/a%5B.txt > > >