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"
これにより、ファイルを移動しても、パスの変更について心配する必要がなくなります。