@@ -51,10 +51,17 @@ * \param path The path to check * \return A boolean whether there is a directory at the specified path */ + (BOOL)directoryExistsAtPath: (OFString*)path; +/** + * Creates a directory at the specified path. + * + * \param path The path of the directory + */ ++ (void)createDirectoryAtPath: (OFString*)path; + /** * \param path The path of the directory * \return An array of OFStrings with the files at the specified path */ + (OFArray*)filesInDirectoryAtPath: (OFString*)path;