+49 (0) 89 2154 7447
Provenexpert
★★★★★
Google
★★★★★

How to get full file path Linux? Get the absolute path of a file?

In this tutorial, we will guide you about how to get the Absolute Path of a File in the Linux Operating System and How to get full file path Linux.

Readlink linux command to get full file path Linux:

readlink command in Linux is used to print resolved symbolic links or canonical file names. Whenever we have a symbolic link and we want to know what full path it refers to. You could use the readlink command to display the actual path of the symbolic link.

Print value of a symbolic link or canonical file name.

Syntax:

readlink [OPTION]... FILE...
OPTION:
  -f, --canonicalize            canonicalize by following every symlink in
                                every component of the given name recursively;
                                all but the last component must exist
  -e, --canonicalize-existing   canonicalize by following every symlink in
                                every component of the given name recursively,
                                all components must exist
  -m, --canonicalize-missing    canonicalize by following every symlink in
                                every component of the given name recursively,
                                without requirements on components existence
  -n, --no-newline              do not output the trailing delimiter
  -q, --quiet
  -s, --silent                  suppress most error messages (on by default)
  -v, --verbose                 report error messages
  -z, --zero                    end each output line with NUL, not newline
      --help     display this help and exit
      --version  output version information and exit

Example

readlink -f myfile.txt

Output

/home/user/dos2021/myfile.txt

More from our latest blogs

Chatbots for customer service and BrandCrock GmbH an agency for service providers

Chatbots are a type of artificial intelligence that can communicate with customers through messaging platforms,

E-Commerce Alan Bradford Mar 7, 2023

Best E-Commerce Agency Award 2023 Germany

Brandcrock GmbH, a leading digital agency, has achieved a remarkable feat by securing second place

Awards Alan Bradford Mar 6, 2023

Shopware 6 Aqua Theme

Aqua theme allows you to add a new theme for your webshop. This theme is

News Alan Bradford Feb 14, 2023

Shopware 6 Plugin Save basket

Shopware 6 Plugin Save Basket / Cart plugin allows displaying registered customers’ recently bought items

News Vaid Ali Dec 5, 2022
1 17 18 19 20 21 43
Scroll to Top