/// <summary>
 /// Returns the symlink target if the entry is a symlink, and null otherwise
 /// </summary>
 /// <param name="localPath">The file or folder to examine</param>
 /// <returns>The symlink target</returns>
 public override string GetSymlinkTarget(string localPath)
 {
     return(IO_WIN.GetSymlinkTarget(localPath));
 }
Beispiel #2
0
        /// <summary>
        /// Returns the symlink target if the entry is a symlink, and null otherwise
        /// </summary>
        /// <param name="localPath">The file or folder to examine</param>
        /// <returns>The symlink target</returns>
        public override string GetSymlinkTarget(string localPath)
        {
            var spath = ConvertToSnapshotPath(localPath);

            return(IO_WIN.GetSymlinkTarget(spath));
        }
Beispiel #3
0
 /// <summary>
 /// Returns the symlink target if the entry is a symlink, and null otherwise
 /// </summary>
 /// <param name="file">The file or folder to examine</param>
 /// <returns>The symlink target</returns>
 public override string GetSymlinkTarget(string file)
 {
     return(m_sysIO.GetSymlinkTarget(file));
 }