| 2204 | } |
| 2205 | |
| 2206 | U32 KProcess::mkdirat(U32 dirfd, BString path, U32 mode) { |
| 2207 | BString dir; |
| 2208 | U32 result = 0; |
| 2209 | |
| 2210 | if (path.charAt(0) != '/') |
| 2211 | result = getCurrentDirectoryFromDirFD(dirfd, dir); |
| 2212 | |
| 2213 | if (result) |
| 2214 | return result; |
| 2215 | BString fullPath = Fs::getFullPath(dir, path); |
| 2216 | return this->mkdir(fullPath); |
| 2217 | } |
| 2218 | |
| 2219 | #define K_AT_SYMLINK_FOLLOW 0x400 // Follow symbolic links. |
| 2220 | #define K_AT_NO_AUTOMOUNT 0x800 // Suppress terminal automount traversal |
no test coverage detected