I have a gfile which points to a path containing symlinks.
E.g. there are:
/home/test/link --> /home/original
/home/original/myfile.txt
The gfile points to /home/test/link/myfile.txt. Does gio provide some method to resolve all links in this path, so that I can obtain /home/original/myfile.txt ?
Or do I need to implement that myself ?
Still not sure if gio possibly provides some shortcut ... meanwhile I implemented it myself using gio:
Tested for some absolute and relative links.