| 1263 | } |
| 1264 | |
| 1265 | BOOST_FILESYSTEM_DECL |
| 1266 | path initial_path(error_code* ec) |
| 1267 | { |
| 1268 | static path init_path; |
| 1269 | if (init_path.empty()) |
| 1270 | init_path = current_path(ec); |
| 1271 | else if (ec != 0) ec->clear(); |
| 1272 | return init_path; |
| 1273 | } |
| 1274 | |
| 1275 | BOOST_FILESYSTEM_DECL |
| 1276 | bool is_empty(const path& p, system::error_code* ec) |