Re: C++ and directories
Nobody <nobody@nowhere.com> wrote:
On Tue, 16 Aug 2011 11:42:39 +0000, Juha Nieminen wrote:
Anyways, is there a reason why the C++ standard couldn't include a
library similar to boost::filesystem?
A third-party library has more leeway. It's up to the third-party
developer whether "it sort-of works, on common platforms" is good enough.
If e.g. an OS vendor complains that the interface is a poor match for
their OS's filesystem semantics, the boost developers can just say
"tough luck". But the ISO standardisation process is rather more involved.
Not everything even in the current standard is something that *must*
work on every system in existence.
For example, where does the output of std::cout (or printf from that
matter) go? There actually *are* systems which have no concept of
standard output streams, and std::cout/printf can hence fail (for example
printf returns the amount of printed characters for this precise reason).
However, std::cout/printf work in the vast majority of systems, and
programs written using them are usually not even intended to be run on
those obscure (usually embedded) systems that have no support. (Have you
ever seen a "hello world" program in C or C++ that actually checks that
printing succeeded? The fair assumption can be made that if you have
a system with no standard output you wouldn't be running such a program
on it anyways.)
(Ok, the printing can fail for other reasons as well, eg. if standard
output is redirected to a file and an error happens. Of course trying to
handle this kind of error from the program itself would be quite difficult.)
I think a file system library is feasible even for the C++ standard,
especially if it includes means to check that the target architecture
has proper support.