From: Erik Hofman Date: Sat, 2 Jul 2016 09:03:32 +0000 (+0200) Subject: Convert _filename to an SGPath X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=755c37c0f3bc6c34c564734643ca302d730453fd;p=simgear.git Convert _filename to an SGPath --- diff --git a/simgear/io/HTTPFileRequest.cxx b/simgear/io/HTTPFileRequest.cxx index 46021625..2a6d226f 100644 --- a/simgear/io/HTTPFileRequest.cxx +++ b/simgear/io/HTTPFileRequest.cxx @@ -41,14 +41,13 @@ namespace HTTP if( responseCode() != 200 ) return setFailure(responseCode(), responseReason()); - if( !_filename.empty() ) + if( !_filename.isNull() ) { // TODO validate path? (would require to expose fgValidatePath somehow to // simgear) - SGPath path(_filename); - path.create_dir(0755); + _filename.create_dir(0755); - _file.open(_filename.c_str(), std::ios::binary | std::ios::trunc); + _file.open(_filename.c_str(), std::ios::binary | std::ios::trunc | std::ios::out); } if( !_file ) diff --git a/simgear/io/HTTPFileRequest.hxx b/simgear/io/HTTPFileRequest.hxx index 43d1cbd5..9eaf7279 100644 --- a/simgear/io/HTTPFileRequest.hxx +++ b/simgear/io/HTTPFileRequest.hxx @@ -19,6 +19,7 @@ #ifndef SG_HTTP_FILEREQUEST_HXX_ #define SG_HTTP_FILEREQUEST_HXX_ +#include #include "HTTPRequest.hxx" #include @@ -43,7 +44,7 @@ namespace HTTP FileRequest(const std::string& url, const std::string& path); protected: - std::string _filename; + SGPath _filename; std::ofstream _file; virtual void responseHeadersComplete();