Re: Dirent?
Re: Dirent?
- Subject: Re: Dirent?
- From: Vince DeMarco <email@hidden>
- Date: Wed, 5 Sep 2001 13:58:14 -0700
On Wednesday, September 5, 2001, at 11:30 am, Chilton Webb wrote:
Slightly OT question, I noticed that the Dirent.h file doesn't contain
any declarations for readdir, closedir, opendir, etc. Am I missing
something obvious? I thought these were POSIX 1.0 functions at least.
They are there on my machine
Look at this
DIR *opendir __P((const char *));
struct dirent *readdir __P((DIR *));
void rewinddir __P((DIR *));
int closedir __P((DIR *));
Have they been replaced by something else under Cocoa?
In Cocoa just use NSFileManger.
vince
References: | |
| >Dirent? (From: Chilton Webb <email@hidden>) |