Index: src/OFFileManager.h ================================================================== --- src/OFFileManager.h +++ src/OFFileManager.h @@ -68,18 +68,18 @@ #endif /*! * @brief Creates a directory at the specified path. * - * @param path The path of the directory + * @param path The path of the directory to create */ - (void)createDirectoryAtPath: (OFString*)path; /*! * @brief Creates a directory at the specified path. * - * @param path The path of the directory + * @param path The path of the directory to create * @param createParents Whether to create the parents of the directory */ - (void)createDirectoryAtPath: (OFString*)path createParents: (bool)createParents; @@ -101,39 +101,39 @@ - (void)changeCurrentDirectoryPath: (OFString*)path; /*! * @brief Returns the size of the specified file. * - * @param path The path to the file whose path should be returned + * @param path The path to the file whose size should be returned * * @return The size of the specified file */ - (of_offset_t)sizeOfFileAtPath: (OFString*)path; /*! * @brief Returns the last access time of the specified item. * - * @param path The path to the file whose last access time should be returned + * @param path The path to the item whose last access time should be returned * * @return The last access time of the specified item */ - (OFDate*)accessTimeOfItemAtPath: (OFString*)path; /*! * @brief Returns the last modification time of the specified item. * - * @param path The path to the file whose last modification time should be + * @param path The path to the item whose last modification time should be * returned * * @return The last modification time of the specified item */ - (OFDate*)modificationTimeOfItemAtPath: (OFString*)path; /*! * @brief Returns the last status change time of the specified item. * - * @param path The path to the file whose last status change time should be + * @param path The path to the item whose last status change time should be * returned * * @return The last status change time of the specified item */ - (OFDate*)statusChangeTimeOfItemAtPath: (OFString*)path; @@ -234,12 +234,12 @@ * The destination path must be a full path, which means it must include the * name of the item. * * This method is not available on some systems, most notably Windows. * - * @param source The path of the item for which a link should be created - * @param destination The path of the item which should link to the source + * @param source The path to the item for which a link should be created + * @param destination The path to the item which should link to the source */ - (void)linkItemAtPath: (OFString*)source toPath: (OFString*)destination; #endif @@ -250,13 +250,13 @@ * The destination path must be a full path, which means it must include the * name of the item. * * This method is not available on some systems, most notably Windows. * - * @param destination The path of the item which should symbolically link to the + * @param destination The path to the item which should symbolically link to the * source - * @param source The path of the item for which a symbolic link should be + * @param source The path to the item for which a symbolic link should be * created */ - (void)createSymbolicLinkAtPath: (OFString*)destination withDestinationPath: (OFString*)source;