@@ -141,10 +141,27 @@ * * @return A new, autoreleased OFMutableURL */ + (instancetype)URL; +/*! + * @brief Appends the specified path component. + * + * @param component The component to append + */ +- (void)appendPathComponent: (OFString *)component; + +/*! + * @brief Appends the specified path component. + * + * @param component The component to append + * @param isDirectory Whether the path is a directory, in which case a slash is + * appened if there is no slash yet + */ +- (void)appendPathComponent: (OFString *)component + isDirectory: (bool)isDirectory; + /*! * @brief Resolves relative sub paths. */ - (void)standardizePath;