Filesystem symlink example
#include <iostream>
int main(int argc, char** argv)
{
std::cout <<
"Symbolic link target: " << symlink.
target() << std::endl;
return 0;
}
static Path Remove(const Path &path)
Remove the given path (file, empty directory, symlink, etc) from the filesystem.
static Path executable()
Get the executable path of the process.
static Symlink CreateSymlink(const Path &src, const Path &dst)
Create a new symlink.
Path target() const
Read symlink target path.
Filesystem symlink definition.