Absolute Path & Relative Path
- Categories:
- console
Setiap file dan direktori dalam filesystem pada sistem operasi Linux, Unix, macOS, freeBSD, atau openBSD dapat diakses bila kita mengetahui jalur atau path direktorinya.
Absolute Path
Absolute path artinya path ditulis dengan lengkap dari nama parent directory sampai nama filenya. Misal, /home/tux/aloha.txt
untuk mengakses berkas aloha.txt atau /home/tux/linux/
untuk mengakses direktori. Ciri utama absolute path diawali dengan /
.
Contoh penggunaan absolute path.
Relative Path
Relative path artinya path tidak ditulis lengkap, tetapi berdasarkan posisi direktori yang sedang anda akses atau sering disebut direktori kerja atau working directory. Misal, saat ini anda berada di direktori /home/
.
Maka cukup dituliskan tux/aloha.txt
untuk mengakses berkas aloha.txt
didalam direktori tux
atau tux/linux/
untuk mengakses direktori bernama linux
didalam tux
. Nama working directory dapat diganti dengan sebuah tanda .
(single dot atau titik tunggal), sedangkan parent directory dapat digantikan dengan tanda ..
(double dot atau titik ganda). Ciri utama relative path adalah tidak diawali oleh /
.
Contoh penggunaan relative path.
Recent Posts
How to Defend Against Brute-Force and DoS Attacks with Fail2ban, Nginx limit_req, and iptables
In this tutorial, I’ll explain how to protect your public-facing Linux server and Nginx web server from common threats, including brute-force and DoS attacks.
Is Getting AWS Solutions Architect Associate Certification Worth It?
If you are a full-time Software Engineer, there's no strong need to pursue this certification.
DevSecOps
My Notes about DevSecOps
AWS Secrets Manager
Explanation about AWS Secrets Manager with example code.
Envelope Encryption
Envelope encryption is the practice of encrypting plaintext data with a data key, and then encrypting the data key under another key.