@@ -154,15 +154,29 @@ * @return The size of the specified file */ + (of_offset_t)sizeOfFileAtPath: (OFString*)path; /*! - * @brief Returns the date of the last modification of the file. + * @brief Returns the last access time of the specified file. + * + * @return The last access time of the specified file + */ ++ (OFDate*)accessTimeOfItemAtPath: (OFString*)path; + +/*! + * @brief Returns the last modification time of the specified file. + * + * @return The last modification time of the specified file + */ ++ (OFDate*)modificationTimeOfItemAtPath: (OFString*)path; + +/*! + * @brief Returns the last status change time of the specified file. * - * @return The date of the last modification of the file + * @return The last status change time of the specified file */ -+ (OFDate*)modificationDateOfFileAtPath: (OFString*)path; ++ (OFDate*)statusChangeTimeOfItemAtPath: (OFString*)path; #ifdef OF_HAVE_CHMOD /*! * @brief Changes the permissions of an item. *