diff options
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/file_util.h b/base/file_util.h index 321070f..095734b 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -112,16 +112,16 @@ BASE_EXPORT bool CopyDirectory(const FilePath& from_path, const FilePath& to_path, bool recursive); +// Returns true if the given path exists on the local filesystem, +// false otherwise. +BASE_EXPORT bool PathExists(const FilePath& path); + } // namespace base // ----------------------------------------------------------------------------- namespace file_util { -// Returns true if the given path exists on the local filesystem, -// false otherwise. -BASE_EXPORT bool PathExists(const base::FilePath& path); - // Returns true if the given path is writable by the user, false otherwise. BASE_EXPORT bool PathIsWritable(const base::FilePath& path); |