10485.cpp 313 B

1234567891011121314
  1. // Copyright iamvfx@gmail.com 2014
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // See http://www.boost.org/LICENSE_1_0.txt
  4. #include <stdio.h>
  5. #include <boost/filesystem.hpp>
  6. int main()
  7. {
  8. boost::filesystem::path dir("/");
  9. for (char c : dir.filename().string())
  10. printf("%c\n", c);
  11. }