Home | History | Annotate | Download | only in src

Lines Matching full:path

116 // Example: FilePath("path/to/file").RemoveDirectoryName() returns
120 // On Windows platform, '\' is the path separator, otherwise it is '/'.
126 // RemoveFileName returns the directory path with the filename removed.
127 // Example: FilePath("path/to/file").RemoveFileName() returns "path/to/".
131 // On Windows platform, '\' is the path separator, otherwise it is '/'.
190 // Don't strip off trailing separator if path is a root directory on
192 const FilePath& path(IsRootDirectory() ? *this :
195 LPCWSTR unicode = String::AnsiToUtf16(path.c_str());
204 result = _stat(path.c_str(), &file_stat) == 0 &&
228 // Returns true if pathname describes an absolute path.
261 // Returns true if FilePath ends with a path separator, which indicates that
268 // Create directories so that path exists. Returns true if successful or if
284 // Create the directory so that path exists. Returns true if successful or