mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
31 lines
571 B
C++
31 lines
571 B
C++
#include <unistd.h>
|
|
#include <iostream>
|
|
|
|
#include <Poco/File.h>
|
|
#include <Poco/Path.h>
|
|
#include <DB/Common/Exception.h>
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
try
|
|
{
|
|
Poco::File dir("./test_dir/");
|
|
dir.createDirectories();
|
|
|
|
Poco::File("./test_dir/file").createFile();
|
|
|
|
if (0 != symlink("./test_dir", "./test_link"))
|
|
DB::throwFromErrno("Cannot create symlink");
|
|
|
|
Poco::File link("./test_link");
|
|
link.renameTo("./test_link2");
|
|
|
|
Poco::File("./test_link2").remove(true);
|
|
return 0;
|
|
}
|
|
catch (...)
|
|
{
|
|
std::cerr << DB::getCurrentExceptionMessage(false) << "\n";
|
|
return 1;
|
|
}
|