ObjFW  Check-in [d20e7cbea0]

Overview
Comment:OFFile: Small documentation improvement
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d20e7cbea016e0179b4f501f64d4ace49c17ed1ffe7b903737a945b8ba9fbc19
User & Date: js on 2014-07-18 19:38:53
Other Links: manifest | tags
Context
2014-07-19
09:35
Minor build system clean-ups check-in: 0278f0b43b user: js tags: trunk
2014-07-18
19:38
OFFile: Small documentation improvement check-in: d20e7cbea0 user: js tags: trunk
13:02
runtime/lookup.m: Minor improvement check-in: 71517b2e5d user: js tags: trunk
Changes

Modified src/OFFile.h from [b4c919473a] to [a349ed870a].

127
128
129
130
131
132
133


134
135
136
137
138
139
140
 * @param createParents Whether to create the parents of the directory
 */
+ (void)createDirectoryAtPath: (OFString*)path
		createParents: (bool)createParents;

/*!
 * @brief Returns an array with the items in the specified directory.


 *
 * @param path The path to the directory whose items should be returned
 * @return An array of OFStrings with the items in the specified directory
 */
+ (OFArray*)contentsOfDirectoryAtPath: (OFString*)path;

/*!







>
>







127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
 * @param createParents Whether to create the parents of the directory
 */
+ (void)createDirectoryAtPath: (OFString*)path
		createParents: (bool)createParents;

/*!
 * @brief Returns an array with the items in the specified directory.
 *
 * @note `.` and `..` are not part of the returned array.
 *
 * @param path The path to the directory whose items should be returned
 * @return An array of OFStrings with the items in the specified directory
 */
+ (OFArray*)contentsOfDirectoryAtPath: (OFString*)path;

/*!