diff options
| author | Frederick Martian <fredmartian@gmail.com> | 2025-11-12 19:19:59 +0100 |
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2025-12-10 20:33:58 +0200 |
| commit | f07762a46830005b6ff4218c1f070ce27a9ecebe (patch) | |
| tree | 7870932ad0c2ec651ed26373a59c8880aaeb733f /indra/llcommon/llerror.cpp | |
| parent | 9756b4b70b3cd24c03142d7e52eb2acae52002ef (diff) | |
Refactoring of LLFile class to support additional methods
- LLFile with its own class method interface to access files for read and write
- Remove rudimentary LLUniqueFile class as LLFile supports now all of that and more
- Implement most of the filename based functions using std::filesystem functions
- Replace LLFile::rmdir() with LLFile::remove() since this function now supports deleting files and directories on all platforms.
Diffstat (limited to 'indra/llcommon/llerror.cpp')
| -rwxr-xr-x[-rw-r--r--] | indra/llcommon/llerror.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index b14464382b..bfa8bca224 100644..100755 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -435,13 +435,9 @@ namespace std::string file = user_dir + "/logcontrol-dev.xml"; - llstat stat_info; - if (LLFile::stat(file, &stat_info)) { - // NB: stat returns non-zero if it can't read the file, for example - // if it doesn't exist. LLFile has no better abstraction for - // testing for file existence. - - file = app_dir + "/logcontrol.xml"; + if (!LLFile::isfile(file)) + { + file = app_dir + "/logcontrol.xml"; } return * new LogControlFile(file); // NB: This instance is never freed |
