var directory = new DirectoryInfo( "\image0\Abc" );
if (!directory.Exists)
{
directory.Create();
}
when I user above asp.net code which unc path, I found the following problem. How can I solve?
Access to the path '\Image0\Abc' is denied.
Regards, atk