You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Erik Huelsmann <eh...@gmail.com> on 2008/06/12 19:08:29 UTC

Re: problems with soft links on Windows

On Thu, May 1, 2008 at 7:21 PM, Stefan Küng <to...@gmail.com> wrote:
> Hi,
>
> Windows supports soft links as you may know. Those are different than the
> shortcut files. But they only work on NTFS.
>
> When using svn on such a softlink, it doesn't work.
>
> * create a softlink like this:
>  mklink /D c:\dirsoftlink c:\workingcopy
> * svn info c:\dirsoftlink
>  svn: 'c:\' is not a working copy
>  svn: Can't open file 'c:\.svn\entries': (error message in OS language)
>
> This only happens with commands that expect a folder. Commands that can work
> on files (usually) work like 'svn st'.

This behaviour is to be expected: because the softlink is itself a
versionable item, it must be contained within a working copy, if you
want to run versioning commands on it.  Ever since softlinks were
added as versionable, it's become impossible to create links to
versioned directories and expect commands issued on the link to be
following the link and act on the directory pointed to.

> The problem is in libsvn_subr/io.c, the function
> map_apr_finfo_to_node_kind() assumes for a filetype of APR_LNK that it's in
> fact a file, but such softlinks are not files but point to a folder.
>
> Is there a reason that links are assumed to be files?

The links are not assumed to be files, they are assumed to be
versionable elements. For versioned elements to report a status, they
must be inside a working copy.

I hope I'm explaining this clearly.

Bye,

Erik.