NFSPROC_MKDIR - Create Directory
- struct createargs { diropargs where; sattr attributes; };
diropargs and sattr are defined in
Basic Data Types .
- union diropres switch (stat status) { case NFS_OK: struct diropok diropok; default: void; };
diropok is defined in
Basic Data Types .
- diropres NFSPROC_MKDIR (createargs) = 14;
The new directory where.name is created in the directory given by where.dir. The initial attributes of the new directory are given by diropok.attributes. A reply status of NFS_OK indicates that the new directory was created, and reply diropok.file and reply diropok.attributes are its file handle and attributes. Any other reply status means that the operation failed and no directory was created.
- NFS_OK
- Indicates that the call completed successfully and the results are valid.
- NFSERR_IO
- Some sort of hard error occurred when the operation was in progress. This could be a disk error, for example.
- NFSERR_ACCES
- Permission denied. The caller does not have the correct permission to perform the requested operation.
- NFSERR_EXIST
- File exists. The file specified already exists.
- NFSERR_NOTDIR
- Not a directory. The caller specified a non-directory in a directory operation.
- NFSERR_NOSPC
- No space left on device. The operation caused the server's file system to reach its limit.
- NFSERR_ROFS
- Read-only file system. Write attempted on a read-only file system.
- NFSERR_NAMETOOLONG
File name too long. The filename in an operation was too long.
- NFSERR_DQUOT
- Disk quota exceeded. The client's disk quota on the server has been exceeded.
- NFSERR_STALE
- The fhandle given in the arguments was invalid. That is, the file referred to by that file handle no longer exists, or access to it has been revoked.
Contents | Next section | Index |