Predictive Hacks

How to get the full path of a file in Unix

Let’s say that you work under your current home directory where you have created a file and you want to extract the full path in order to share it with someone else or to use it in another script. An easy way to do that is using the readlink or the realpath:

readlink

For example:

readlink -f myfile.csv

And we get the full path:

/home/gpipis/my_projects/2021/project_a/myfile.csv

realpath

Another option is to use the realpath.

realpath myfile.csv

And we get the full path:

/home/gpipis/my_projects/2021/project_a/myfile.csv

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.