diff options
author | Oz Linden <oz@lindenlab.com> | 2011-07-19 15:43:12 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2011-07-19 15:43:12 -0400 |
commit | aebeac6898a5d131f437cc2b889439d22ad0e04d (patch) | |
tree | 8b4aaedd3c3177ba0174ef429b78d77e7ba55cc4 /indra | |
parent | 4dc0850da7469906e5ad052da71830b05005295b (diff) | |
parent | 52b9842ced222ac05f54058833f9404409eb0c79 (diff) |
merge changes for storm-1476
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llvfs/lldiriterator.cpp | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/indra/llvfs/lldiriterator.cpp b/indra/llvfs/lldiriterator.cpp index 25550321f0..ff92cbb7fd 100644 --- a/indra/llvfs/lldiriterator.cpp +++ b/indra/llvfs/lldiriterator.cpp @@ -52,8 +52,20 @@ LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask) { fs::path dir_path(dirname); - // Check if path exists. - if (!fs::exists(dir_path)) + bool is_dir = false; + + // Check if path is a directory. + try + { + is_dir = fs::is_directory(dir_path); + } + catch (fs::basic_filesystem_error<fs::path>& e) + { + llwarns << e.what() << llendl; + return; + } + + if (!is_dir) { llwarns << "Invalid path: \"" << dir_path.string() << "\"" << llendl; return; @@ -66,7 +78,7 @@ LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask) } catch (fs::basic_filesystem_error<fs::path>& e) { - llerrs << e.what() << llendl; + llwarns << e.what() << llendl; return; } @@ -82,7 +94,7 @@ LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask) } catch (boost::regex_error& e) { - llerrs << "\"" << exp << "\" is not a valid regular expression: " + llwarns << "\"" << exp << "\" is not a valid regular expression: " << e.what() << llendl; return; } |