Hi,
I think the condition "if (! File.Exists(targetPath))" in SvnCopy.cs does not handle the directory additions. Should this condition be something like
FileAttributes attr = File.GetAttributes(targetPath)
if ((((attr & FileAttributes.Directory) != FileAttributes.Directory) && !File.Exists(targetPath)) || (((attr & FileAttributes.Directory) == FileAttributes.Directory) && !Directory.Exists(targetPath)))
Regards,
Prasad P. Khandekar
I think the condition "if (! File.Exists(targetPath))" in SvnCopy.cs does not handle the directory additions. Should this condition be something like
FileAttributes attr = File.GetAttributes(targetPath)
if ((((attr & FileAttributes.Directory) != FileAttributes.Directory) && !File.Exists(targetPath)) || (((attr & FileAttributes.Directory) == FileAttributes.Directory) && !Directory.Exists(targetPath)))
Regards,
Prasad P. Khandekar