you duplicate the default layout file:
/tmpl/value_*.php
in file field case it is
/tmpl/value_InlineBoxes.php
about the contents of the file, read whatever inline comments exists
there will never be "documentation" for editing layout files
customizer is supposed to read comments in the layout file
in your case you can use variable
$abspath
Try adding BEFORE
// Values Prefix and Suffix Texts
$field->{$prop}[$n] = $pretext . $html . $posttext;
something like
$html .= '<br>'. $abspath;
test the result
then change to
$html .= '<br>'. str_replace('\\', '/', $abspath);
and then change to
$html .= '<br>'. JUri::root() . str_replace('\\', '/', $abspath);
etc until you get the result you need aka you and the HTML that you need
then you can also disable default output that you do not need in field's configuration