/// <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)); }
/// <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))); }
/// <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)); }
/// <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)); }