diff options
Diffstat (limited to 'base/file_util.h')
-rw-r--r-- | base/file_util.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/base/file_util.h b/base/file_util.h index 8f9cfb1..6728a0d 100644 --- a/base/file_util.h +++ b/base/file_util.h @@ -55,6 +55,11 @@ bool EndsWithSeparator(const std::wstring& path); // exists. Returns true if |path| is an existing directory, false otherwise. bool EnsureEndsWithSeparator(FilePath* path); +// Modifies a string by trimming all trailing separators from the end. +// Deprecated. FilePath does this automatically, and if it's constructed from a +// path with a trailing separator, StripTrailingSeparators() may be used. +void TrimTrailingSeparator(std::wstring* dir); + // Strips the topmost directory from the end of 'dir'. Assumes 'dir' does not // refer to a file. // If 'dir' is a root directory, return without change. |