Home | History | Annotate | Download | only in Common

Lines Matching refs:Path

2 Functions useful to operate file directories by parsing file path.

37 This function returns the directory path which contains the particular path.
51 FilePath Path name of file to get the parent directory for.
82 // If the path ends with a path separator, then just append ".."
108 IN CHAR8 *Path
114 This function returns the directory path which contains the particular path.
124 Path Path name of file to normalize
141 Length = strlen (Path);
151 ((Offset > 0) || (Path[0] != '\\')) &&
152 IsDirSep (Path[Offset]) && IsDirSep (Path[Offset + 1])
154 memmove (&Path[Offset], &Path[Offset + 1], Remaining);
162 if ((Remaining >= 3) && IsDirSep (Path[Offset]) &&
163 (Path[Offset + 1] == '.') && IsDirSep (Path[Offset + 2])
165 memmove (&Path[Offset], &Path[Offset + 1], Remaining);
219 This function replaces the final portion of a path with an alternative
230 OldPath Path name of replace the final segment
231 Peer The new path name to concatinate to become the peer path