SFML community forums
General => Feature requests => Topic started by: paupav on December 28, 2014, 02:43:58 pm
-
When you are saving something like screenshot using sf::RenderWindow::Capture() and when you are trying to save it to some folder and if that folder doesn't exist, why doesn't it get create it?
-
Because SFML is not a filesystem library, and therefore it doesn't manage this kind of extra behavior.
-
Because it's a very obscure/rarely needed feature and there is no easy way to do it without either a filesystem library or OS specific calls.
-
Also, some users might explicitly want the folder not to be created. This is much better handled in user code rather than in the library.