ObjFW  Check-in [4a95a92e9d]

Overview
Comment:Documentation fixes
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4a95a92e9d2edb8c5c275d39c4f02546a8178940e3f75139a8a84155116d9e33
User & Date: js on 2015-08-22 17:10:47
Other Links: manifest | tags
Context
2015-08-23
10:34
OFBlock: Fix two bugs check-in: 3c3467423a user: js tags: trunk
2015-08-22
17:10
Documentation fixes check-in: 4a95a92e9d user: js tags: trunk
12:10
Increase library major version check-in: 5a7d40aced user: js tags: trunk
Changes

Modified src/OFFileManager.h from [b4e702fc31] to [82f32eec25].

104
105
106
107
108
109
110


111
112
113
114
115
116



117
118
119
120
121
122
123



124
125
126
127
128
129
130
 * @return The size of the specified file
 */
- (of_offset_t)sizeOfFileAtPath: (OFString*)path;

/*!
 * @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 last status change time of the specified file
 */
- (OFDate*)statusChangeTimeOfItemAtPath: (OFString*)path;

#ifdef OF_HAVE_CHMOD
/*!







>
>






>
>
>







>
>
>







104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
 * @return The size of the specified file
 */
- (of_offset_t)sizeOfFileAtPath: (OFString*)path;

/*!
 * @brief Returns the last access time of the specified file.
 *
 * @param path The path to the file whose last access time should be returned
 *
 * @return The last access time of the specified file
 */
- (OFDate*)accessTimeOfItemAtPath: (OFString*)path;

/*!
 * @brief Returns the last modification time of the specified file.
 *
 * @param path The path to the file whose last modification time should be
 *	       returned
 *
 * @return The last modification time of the specified file
 */
- (OFDate*)modificationTimeOfItemAtPath: (OFString*)path;

/*!
 * @brief Returns the last status change time of the specified file.
 *
 * @param path The path to the file whose last status change time should be
 *	       returned
 *
 * @return The last status change time of the specified file
 */
- (OFDate*)statusChangeTimeOfItemAtPath: (OFString*)path;

#ifdef OF_HAVE_CHMOD
/*!
228
229
230
231
232
233
234

235
236
237
238
239
240
241
- (void)createSymbolicLinkAtPath: (OFString*)destination
	     withDestinationPath: (OFString*)source;

/*!
 * @brief Returns the destination of the symbolic link at the specified path.
 *
 * @param path The path to the symbolic link

 * @return The destination of the symbolic link at the specified path
 */
- (OFString*)destinationOfSymbolicLinkAtPath: (OFString*)path;
#endif
@end

OF_ASSUME_NONNULL_END







>







236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
- (void)createSymbolicLinkAtPath: (OFString*)destination
	     withDestinationPath: (OFString*)source;

/*!
 * @brief Returns the destination of the symbolic link at the specified path.
 *
 * @param path The path to the symbolic link
 *
 * @return The destination of the symbolic link at the specified path
 */
- (OFString*)destinationOfSymbolicLinkAtPath: (OFString*)path;
#endif
@end

OF_ASSUME_NONNULL_END