im using sharpSvn to get the last version in SVN repository, from own web application.
This is how i get last version: (C#)
using (SvnClient client = new SvnClient())
{
client.CheckOut(new Uri("file://#URL#/"), "c:\\FOLDER");
}
When is running on visual studio, works fine but when i trying to get last version from iis web app throw this exception:
"SharpSvn.SvnSystemException: Can't open file '\URL\format': Access denied."
What i have to do?