#include <unistd.h> int fchdir(int fildes);Service Program Name: QP0LLIB1
The fchdir() function makes the directory named by fildes the new current directory. If the fchdir() function fails, the current directory is unchanged.
Note: Adopted authority is not used.
Authorization Required for
fchdir()
Object Referred to | Authority Required | errno |
---|---|---|
The directory named by fildes. | *X | EACCES |
If fchdir() 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] | |
[EBADF] | |
[EBADFID] | |
[EBUSY] | |
[EDAMAGE] | |
[EINTR] | |
[EINVAL] | |
[EIO] | |
[ENOENT] | |
[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 fchdir() API operates on two objects: the previous current working directory and the new one. If either of these objects is managed by a file system that is not threadsafe, fchdir() fails with the ENOTSAFE error code.
If the local storage of attributes and names is not suppressed (option noac when the file system is mounted), then one can potentially use the fchdir() API to change to a directory which has been removed. This depends on how often and when the local storage of attributes and names is refreshed.
See Code disclaimer information for information pertaining to code examples.
The following example uses fchdir():
#include <stdio.h> #include <unistd.h> #include <fcntl.h> main() { char dir[]="tempfile"; int file_descriptor; int oflag1 = O_RDONLY | O_CCSID; mode_t mode = S_IRUSR | S_IWUSR | S_IXUSR; unsigned int open_ccsid = 37; if ((file_descriptor = open(dir,oflag1,mode,open_ccsid)) < 0) perror("open() error"); else { if (fchdir(file_descriptor) != 0) perror("fchdir() to tempfile failed"); close(file_descriptor); } }
Output:
fchdir() to tempfile failed: Not a directory.
Top | UNIX-Type APIs | APIs by category |