在Windows Vista中使用符号链接

One of the long-awaited features in Windows Vista was the ability to use symbolic links, the way you can in linux. Sadly, they don’t work quite as well as they could, but it’s a big upgrade from prior versions, and has solved a number of problems for me already.

Windows Vista中人们期待已久的功能之一就是能够使用符号链接,这是在Linux中的一种方式。 令人遗憾的是,它们的运行状况不尽如人意,但这是对先前版本的重大升级,并且已经为我解决了许多问题。

使用mklink命令 (Using the mklink Command)

The command that you need to use is mklink, which you’ll use from the command line. Just type it on the command line to see the options:

您需要使用的命令是mklink ,您将在命令行中使用它。 只需在命令行上输入即可查看选项:

C:\Users\geek>mklink
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D      Creates a directory symbolic link.  Default is a file
symbolic link.
/H      Creates a hard link instead of a symbolic link.
/J      Creates a Directory Junction.
Link    specifies the new symbolic link name.
Target  specifies the path (relative or absolute) that the new link
refers to.
C:\Users\geek>mklink
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D      Creates a directory symbolic link.  Default is a file
symbolic link.
/H      Creates a hard link instead of a symbolic link.
/J      Creates a Directory Junction.
Link    specifies the new symbolic link name.
Target  specifies the path (relative or absolute) that the new link
refers to.

For instance, if you wanted to make the folder C:\Users\Geek\TestFolder available from C:\TestFolder as well, you could use the following command.

例如,如果您还想使文件夹C:\ Users \ Geek \ TestFolder也可以从C:\ TestFolder使用,则可以使用以下命令。

C:\mklink /D C:\TestFolder C:\Users\Geek\TestFoldersymbolic link created for C:\TestFolder <<===>> C:\Users\Geek\TestFolder

C:\ mklink / DC:\ TestFolder C:\ Users \ Geek \ TestFolders为C:\ TestFolder创建的符号链接<< === >> C:\ Users \ Geek \ TestFolder

Now if you look in C:\TestFolder directory, you’ll see whatever files were in the other directory.

现在,如果您查看C:\ TestFolder目录,您将看到另一个目录中的所有文件。

了解选项。 (Understanding the Options.)

MKLINK link target

MKLINK链接目标

Using the command without any extra options creates a soft link to a file.

使用不带任何其他选项的命令会创建到文件的软链接。

/D creates a symbolic link, or a soft link.

/ D创建符号链接或软链接。

This essentially acts like a shortcut to a folder in prior versions of Windows, except you don’t have to use an actual shortcut.

在本质上,这与Windows早期版本中的文件夹快捷方式一样,除非您不必使用实际的快捷方式。

/H creates a hard link, which points directly to the file.

/ H创建一个硬链接,该链接直接指向该文件。

This option can’t be used for folders directly for some reason, you’ll have to use the next option.

由于某些原因,该选项不能直接用于文件夹,您必须使用下一个选项。

/J creates a “Directory Junction”

/ J创建一个“目录连接”

A Directory Junction is actually just a hard link to a directory. This is a feature that existed prior to Vista as well. If you are trying to symlink to a directory using a hard link, then you should use this option.

目录连接实际上只是到目录的硬链接。 这是Vista之前也存在的功能。 如果尝试使用硬链接符号链接到目录,则应使用此选项。

了解硬链接与软链接 (Understanding Hard vs Soft Links)

Hard Link

硬链接

A hard link directly points to the file, and acts to the operating system as if it is the file itself. You’ll want to use this option the majority of the time if you are trying to fake an application’s directory.

硬链接直接指向文件,并像文件本身一样作用于操作系统。 如果要伪造应用程序的目录,则通常需要使用此选项。

Soft Link

软链接

A soft link is essentially a shortcut to a file or folder – if you are using Windows explorer, you’ll be redirected to the directory if you double-click on a shortcut, it won’t pretend its part of the filesystem. You can still directly reference or open a file with the symlinked path, and it mostly works.

软链接本质上是指向文件或文件夹的快捷方式-如果您使用的是Windows资源管理器,则双击快捷方式将重定向到该目录,它不会伪装成文件系统的一部分。 您仍然可以直接使用符号链接的路径引用或打开文件,并且该文件大多数都可以使用。

使用网络共享中的符号链接 (Using Symlinks from a Network Share)

One of the things that’s been extensively discussed is that you cannot use the Vista symlinks from another operating system (not surprising), but you cannot use them from a network share either. This is troublesome if you expect to use this feature on a web server or a file server.

被广泛讨论的一件事是,您不能使用来自另一个操作系统的Vista符号链接(不足为奇),但是您也不能从网络共享中使用它们。 如果您希望在Web服务器或文件服务器上使用此功能,则很麻烦。

删除符号链接 (Deleting Symlinks)

To delete a symlink, you can just delete the link. Just make sure you don’t delete the original file.

要删除符号链接,您只需删除链接。 只要确保您不删除原始文件即可。

翻译自: https://www.howtogeek.com/howto/windows-vista/using-symlinks-in-windows-vista/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/278165.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

shell学习笔记--自我总结

一、文件 touch file # 创建空白文件 rm -rf 目录名 # 不提示删除非空目录(-r:递归删除 -f强制) dos2unix # windows文本转linux文本 unix2dos # linux文本转windows文本 enca filename # 查看编码 安装 yu…

201671030107胡文艳实验三作业互评与改进报告

任务1&#xff1a;要给出所点评作业的链接地址&#xff0c;点评内容和阅读心得 读了你的这篇博客&#xff0c;一方面给我的印象就是排版整齐&#xff0c;内容充实&#xff0c;态度认真&#xff1b;另外一方面就是通过别人反省自己&#xff0c;看了你的博客&#xff0c;我觉得我…

进程handle获取线程_获取进程中的线程列表

进程handle获取线程The System.Diagnostics namespace contains functions that allow you to manage processes, threads, eventlogs and performance information. System.Diagnostics命名空间包含允许您管理进程&#xff0c;线程&#xff0c;事件日志和性能信息的函数。 The…

2018-3-28Linux系统管理(16)计算机网络基础

在这一章当中我们讲述计算机网络基础。一、计算机网络网络通信就像人与人之间的交流一样&#xff0c;说同一种语言&#xff0c;而后双方进行无障碍的通信交流&#xff0c;那么两台主机通信时&#xff0c;它们彼此交换数据的格式的前提为互相理解才可以&#xff0c;我们此前也有…

从Ubuntu命令行按进程名称杀死进程

There are a number of ways to kill a process if you know the name of the process. Here’s a couple different ways you can accomplish this. We are going to assume that the process we are trying to kill is named irssi 如果您知道进程的名称&#xff0c;则有多种…

18 南京 D

裸的最小球覆盖。 坐标范围大一些所以我们把初始的温度也设置的大一些。 1 #include <bits/stdc.h>2 using namespace std;3 typedef long long ll;4 typedef double db;5 const db INF 1e100;6 const db delta 0.98;7 const db eps 1e-8;8 struct p3{9 db x,y,z;…

如何在iPhone或iPad的控制中心中控制智能家居设备

Apple’s Home app offers quick controls for controlling smart lights, doorbells, thermostats, and other smart home devices—right in your iPhone or iPad’s Control Center. Here’s how to set it up and use it. Apple的Home应用程序可在iPhone或iPad的控制中心内…

亚信安全与安徽电信共创“云网融合”安全新局面

全面提升公共安全能力 联合推“天翼U盾”保障移动政务安全 在近日举办的安徽“互联网”产业合作峰会上&#xff0c;亚信安全宣布与中国电信安徽公司达成战略合作&#xff0c;双方将在“云网融合”的生态基础上打造特色安全服务、促进政企协同安全监管、共创网络安全平安城市等…

idea中开启Run Dashboard

若没有 下一步 ok 转载于:https://www.cnblogs.com/aijiajia1314/p/10551007.html

电台复活节_如何玩Android 11的隐藏复活节彩蛋游戏

电台复活节Justin Duino贾斯汀杜伊诺(Justin Duino)Google includes a hidden “Easter Egg” with each new Android version. Android 11 has one of the more elaborate Easter Eggs as it’s actually a game you can play. We’ll show you how to find it and play. Goog…

AQS源码阅读笔记(一)

AQS源码阅读笔记 先看下这个类张非常重要的一个静态内部类Node。如下&#xff1a; static final class Node {//表示当前节点以共享模式等待锁static final Node SHARED new Node();//表示当前模式以独占模式等待锁static final Node EXCLUSIVE null;//表示当前线程等待锁的动…

python之实现从ftp下载文件到本地

#!/usr/bin/python # codingutf-8 import os from ftplib import FTP # 引入ftp模块class MyFtp:ftp FTP()def __init__(self,host,port21):self.ftp.connect(host,port)def login(self,username,pwd):self.ftp.set_debuglevel(2) # 打开调试级别2&#xff0c;显示详细信息s…

如何在Instagram上过滤冒犯性评论

Shubham AgarwalShubham AgarwalIf you have a public Instagram profile, chances are you’ve been a victim of inappropriate comments from strangers. Given the social network’s vast size, it’s practically impossible to escape such bad actors. Thankfully, Ins…

复杂性思维中文第二版 附录 A、算法分析

附录 A、算法分析 原文&#xff1a;Appendix A Analysis of algorithms 译者&#xff1a;飞龙 协议&#xff1a;CC BY-NC-SA 4.0 自豪地采用谷歌翻译 部分参考了《Think Python 2e 中译本 第二十一章&#xff1a;算法分析》 算法分析 (Analysis of algorithms) 是计算机科学的一…

如何在Windows 8.1中获取Windows 10样式的开始菜单

On January 21, Microsoft officially announced the new features that would be included in Windows 10. While you’ll have to wait for the release to enjoy most of the new features, you can take advantage of the new Windows 10 Start menu today. 1月21日&#x…

Android工程中javax annotation Nullable找不到的替代方案

我们在某些Android开源库中会遇到下面的引用找不到的问题&#xff1a;import javax.annotation.Nonnull;import javax.annotation.Nullable; 其实Android实现了javax的类似注解&#xff0c;可以使用下面的引用替换&#xff1a;import android.support.annotation.NonNull;impor…

HDU1561:The more, The Better——题解

http://acm.hdu.edu.cn/showproblem.php?pid1561 ACboy很喜欢玩一种战略游戏&#xff0c;在一个地图上&#xff0c;有N座城堡&#xff0c;每座城堡都有一定的宝物&#xff0c;在每次游戏中ACboy允许攻克M个城堡并获得里面的宝物。但由于地理位置原因&#xff0c;有些城堡不能直…

ubuntu列出所有磁盘_列出Ubuntu上的磁盘空间使用情况

ubuntu列出所有磁盘Simply open a new Terminal window and type in this command 只需打开一个新的终端窗口并输入此命令 df -Th f翻译自: https://www.howtogeek.com/howto/ubuntu/list-disk-space-usage-on-ubuntu/ubuntu列出所有磁盘

python基础之字符编码

阅读目录 一 了解字符编码的知识储备二 字符编码介绍三 字符编码应用之文件编辑器3.1 文本编辑器之nodpad3.2 文本编辑器之pycharm3.3 文本编辑器之python解释器3.4 总结四 字符编码应用之python4.1 执行python程序的三个阶段4.2 python2与python3字符串类型的区别一 了解字符编…

C# WinForm开发系列 - DataGridView

1.DataGridView实现课程表 testcontrol.rar 2.DataGridView二维表头及单元格合并 DataGridView单元格合并和二维表头.rar myMultiColHeaderDgv.rar 3.DataGridView单元格显示GIF图片 gifanimationindatagrid.rar 4.自定义显示DataGridView列(行头显示行号与图标,同一单元格显示…