• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //  Copyright (c) 2020 Andrey Semashev
2 //
3 //  Distributed under the Boost Software License, Version 1.0.
4 //  See accompanying file LICENSE_1_0.txt or copy at
5 //  https://www.boost.org/LICENSE_1_0.txt)
6 
7 #include <boost/filesystem.hpp>
8 
main()9 int main()
10 {
11     boost::filesystem::path p(".");
12     boost::filesystem::is_directory(p);
13 }
14