ObjFW  Diff

Differences From Artifact [31d02bd727]:

To Artifact [78ef5184a3]:


197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
 */
+ (void)renameItemAtPath: (OFString*)source
		  toPath: (OFString*)destination;

/*!
 * @brief Removes the item at the specified path.
 *
 * If the item at the specified path is a directory, it needs to be empty.
 *
 * @param path The path to the item which should be removed
 */
+ (void)removeItemAtPath: (OFString*)path;

#ifdef OF_HAVE_LINK
/*!







|







197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
 */
+ (void)renameItemAtPath: (OFString*)source
		  toPath: (OFString*)destination;

/*!
 * @brief Removes the item at the specified path.
 *
 * If the item at the specified path is a directory, it is removed recursively.
 *
 * @param path The path to the item which should be removed
 */
+ (void)removeItemAtPath: (OFString*)path;

#ifdef OF_HAVE_LINK
/*!