#include <sys/types.h> #include <dirent.h> DIR *opendir(const char *dirname);Service Program Name: QP0LLIB1
The opendir() function opens a directory so that it can be read with the readdir() function. The variable dirname is a string giving the name of the directory to open. If the last component of dirname is a symbolic link, opendir() follows the symbolic link. As a result, the directory that the symbolic link refers to is opened. The functions readdir(), rewinddir(), and closedir() can be called after a successful call to opendir(). The first readdir() call reads the first entry in the directory.
Names returned on calls to readdir() are returned in the CCSID (coded character set identifier) in effect for the current job at the time this opendir() function is called. If the CCSID of the job is 65535, the default CCSID of the job is used. See QlgOpendir()--Open Directory for specifying a different CCSID.
This parameter is assumed to be represented in the CCSID currently in effect for the job. If the CCSID of the job is 65535, this parameter is assumed to be represented in the default CCSID of the job.
See QlgOpendir()--Open Directory for a description and an example of supplying the dirname in any CCSID.
Note: Adopted authority is not used.
Authorization required for opendir()
Object Referred to | Authority Required | errno |
---|---|---|
Each directory in the path name preceding the directory to be opened | *X | EACCES |
The directory to be opened | *R | EACCES |
If opendir() is not successful, errno usually indicates one of the following errors. Under some conditions, errno could indicate an error other than those listed here.
Error condition | Additional information |
---|---|
[EACCES] |
If you are accessing a remote file through the Network File System, update operations to file permissions at the server are not reflected at the client until updates to data that is stored locally by the Network File System take place. (Several options on the Add Mounted File System (ADDMFS) command determine the time between refresh operations of local data.) Access to a remote file may also fail due to different mappings of user IDs (UID) or group IDs (GID) on the local and remote systems. |
[EAGAIN] | |
[EBADFID] | |
[EBADNAME] | |
[EBUSY] | |
[ECONVERT] | |
[EDAMAGE] | |
[EEXIST] | |
[EFAULT] | |
[EFILECVT] | |
[EINTR] | |
[EINVAL] | |
[EIO] | |
[EJRNDAMAGE] | |
[EJRNENTTOOLONG] | |
[EJRNINACTIVE] | |
[EJRNRCVSPC] | |
[ELOOP] | |
[EMFILE] | |
[ENAMETOOLONG] | |
[ENEWJRN] | |
[ENEWJRNRCV] | |
[ENFILE] | |
[ENOENT] | |
[ENOMEM] | |
[ENOSPC] | |
[ENOTAVAIL] | |
[ENOTDIR] | |
[ENOTSAFE] | |
[ENOTSUP] | |
[EROOBJ] | |
[ESTALE] |
If you are accessing a remote file through the Network File System, the file may have been deleted at the server. |
[EUNKNOWN] |
If interaction with a file server is required to access the object, errno could indicate one of the following errors:
Error condition | Additional information |
---|---|
[EADDRNOTAVAIL] | |
[ECONNABORTED] | |
[ECONNREFUSED] | |
[ECONNRESET] | |
[EHOSTDOWN] | |
[EHOSTUNREACH] | |
[ENETDOWN] | |
[ENETRESET] | |
[ENETUNREACH] | |
[ESTALE] |
If you are accessing a remote file through the Network File System, the file may have been deleted at the server. |
[ETIMEDOUT] | |
[EUNATCH] |
The following messages may be sent from this function:
Message ID | Error Message Text |
---|---|
CPE3418 E | Possible APAR condition or hardware failure. |
CPFA0D4 E | File system error occurred. Error number &1. |
CPF3CF2 E | Error(s) occurred during running of &1 API. |
CPF9872 E | Program or service program &1 in library &2 ended. Reason code &3. |
The file descriptor that is used by opendir() will not be inherited in a child process that is created by the spawn() or spawnp() API.
opendir() may allocate memory from the user's heap.
Files that are added to the directory after the first call to readdir() following an opendir() or rewinddir() may not be returned on calls to readdir(), and files that are removed may still be returned on calls to readdir().
QDLS updates the access time on opendir().
If the directory exists on a volume formatted in Universal Disk Format (UDF), the authorization that is checked for the directory and preceding directories in the path name follows the rules described in Authorization required for opendir(). If the directory exists on a volume formatted in some other media format, no authorization checks are made on the directory being opened and each directory in the path name. The volume authorization list is checked for *USE authority regardless of the volume media format.
See Code disclaimer information for information pertaining to code examples.
The following example opens a directory:
#include <sys/types.h> #include <dirent.h> #include <sys/stat.h> #include <sys/types.h> #include <errno.h> #include <stdio.h> void traverse(char *fn, int indent) { DIR *dir; struct dirent *entry; int count; char path[1025]; /*** EXTRA STORAGE MAY BE NEEDED ***/ struct stat info; for (count=0; count<indent; count++) printf(" "); printf("%s\n", fn); if ((dir = opendir(fn)) == NULL) perror("opendir() error"); else { while ((entry = readdir(dir)) != NULL) { if (entry->d_name[0] != '.') { strcpy(path, fn); strcat(path, "/"); strcat(path, entry->d_name); if (stat(path, &info) != 0) fprintf(stderr, "stat() error on %s: %s\n", path, strerror(errno)); else if (S_ISDIR(info.st_mode)) traverse(path, indent+1); } } closedir(dir); } } main() { puts("Directory structure:"); traverse("/etc", 0); }
Output:
Directory structure: /etc /etc/samples /etc/samples/IBM /etc/IBM
Top | UNIX-Type APIs | APIs by category |