Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Folder1 Item1 Folder2 Item2
如何将第 2 项链接到第 1 项。我试过"/Folder2/Item.extension"了,但没有成功。而且我一/开始就尝试过没有。
"/Folder2/Item.extension"
/
使用相对路径,尝试:
"../Folder2/Item2"
双点符号表示父文件夹。
使用绝对路径,假设 Folder1 位于项目的根目录,请尝试:
"/Folder2/Item2"
这样,如果您移动文件,就不必担心更改路径。