| 4043 | } |
| 4044 | |
| 4045 | BOOST_FILESYSTEM_DECL |
| 4046 | path initial_path(error_code* ec) |
| 4047 | { |
| 4048 | static path init_path; |
| 4049 | if (init_path.empty()) |
| 4050 | init_path = current_path(ec); |
| 4051 | else if (ec) |
| 4052 | ec->clear(); |
| 4053 | return init_path; |
| 4054 | } |
| 4055 | |
| 4056 | //! Tests if the directory is empty. Implemented in directory.cpp. |
| 4057 | bool is_empty_directory |