auto fullPath = std::filesystem::is_directory("/home/kush1244/DEV/work");
auto tildeInPath = std::filesystem::is_directory("~/DEV/work")
The value of fullPath is true but tildeInPath is false. Since both path are same, why the output isn't same?