0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

cdコマンドと相対path

Last updated at Posted at 2022-10-22

cdコマンド

Change Directoryの略

[~] ユーザー,ホームディレクトリ
[.] 現在いるディレクトリ (cd使ってもカレントディレクトリは変わらない)
[..] 現在いるディレクトリの一階上(finderで開くと左側)に移動
[/] 最高位ディレクトリ

相対パスについて

同じフォルダ内、同じ階層のindex2.htmlをリンク
index.html
<a href ="./index2.html">アンカーリンク </a>
or
<a href="index2.html">アンカーリンク </a>
1階層下のtestフォルダ内index2.htmlをリンク
index.html
<a href="./test/index2.html">アンカー</a>
or
<a href="test/index2.html">アンカー</a>
2階層下test/about/index2.htmlをリンク
index.html
<a href="./test/about/index2.html">アンカー</a>
or
<a href="test/about/index2.html">アンカー</a>
1階層上index2.htmlをリンク
index.html
<a href="../index2.html">アンカー</a>
1階層上Libraryフォルダ内index2.htmlをリンク
index.html
<a href="../Library/index2.html">アンカー</a>
2階層上index2.htmlをリンク
index.html
<a href="../../index2.html">アンカー</a>
2階層上accessフォルダ内index2.htmlをリンク
index.html
<a href="../../access/index2.html">アンカー</a>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?