Esempio n. 1
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(_sysIO.GetSymlinkTarget(file));
 }
Esempio n. 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)
 {
     return(SYS_IO.GetSymlinkTarget(ConvertToSnapshotPath(localPath)));
 }
Esempio n. 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 string GetSymlinkTarget(string file)
        {
            var local = ConvertToSnapshotPath(FindSnapShotByLocalPath(file), file);

            return(_sysIO.GetSymlinkTarget(local));
        }
Esempio n. 4
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)
 {
     return(SYS_IO.GetSymlinkTarget(localPath));
 }