how do you convert a relative path to an absolute path under C++/ gtkmm?

427 Views Asked by At

how do you convert a relative path to an absolute path under C++ and gtk?

1

There are 1 best solutions below

0
On
// For C++ with Gnome Gtkmm3 libraries
#include <string>
#include <glibmm.h>
#include <giomm.h>

using namespace std;

string PathRel2Abs(string relpath) {
  Glib::RefPtr<Gio::File> file = Gio::File::create_for_path(relpath);
  return file->get_path();
}