Get the absolute path of a boost filePath as a string

#include <iostream>
#include <boost/filesystem.hpp>

int main() {
    boost::filesystem::path filePath("/path/to/your/file.txt");
    boost::filesystem::path absolutePath = boost::filesystem::absolute(filePath);

    std::cout << "Absolute Path: " << absolutePath << std::endl;

    return 0;
}