Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dpns_chdir(3) [debian man page]

DPNS_CHDIR(3)						      DPNS Library Functions						     DPNS_CHDIR(3)

NAME
dpns_chdir - change DPNS current directory used by the name server SYNOPSIS
#include <sys/types.h> #include "dpns_api.h" int dpns_chdir (const char *path) DESCRIPTION
dpns_chdir changes the DPNS current directory used by the name server to expand DPNS pathnames not beginning with /. This current working directory is stored in a thread-safe variable in the client. path specifies the logical pathname relative to the current DPNS directory or the full DPNS pathname. RETURN VALUE
This routine returns 0 if the operation was successful or -1 if the operation failed. In the latter case, serrno is set appropriately. ERRORS
ENOENT The named directory does not exist or is a null pathname. EACCES Search permission is denied on any component of path. EFAULT path is a NULL pointer. ENOTDIR A component of path prefix is not a directory. ENAMETOOLONG The length of path exceeds CA_MAXPATHLEN or the length of a path component exceeds CA_MAXNAMELEN. SENOSHOST Host unknown. SENOSSERV Service unknown. SECOMERR Communication error. ENSNACT Name server is not running or is being shutdown. SEE ALSO
Castor_limits(4) AUTHOR
LCG Grid Deployment Team DPNS
$Date: 2001/10/04 12:12:42 $ DPNS_CHDIR(3)

Check Out this Related Man Page

DPNS_MKDIR(3)						      DPNS Library Functions						     DPNS_MKDIR(3)

NAME
dpns_mkdir - create a new DPNS directory in the name server SYNOPSIS
#include <sys/types.h> #include "dpns_api.h" int dpns_mkdir (const char *path, mode_t mode) DESCRIPTION
dpns_mkdir creates a new DPNS directory in the name server. An entry is created in the name server database and the directory's owner ID is set to the effective user ID of the requestor. The group ID of the directory is set to the effective group ID of the requestor or is taken from the parent directory if the latter has the S_ISGID bit set. The access permission bits for the directory are taken from mode, then all bits set in the requestor's file mode creation mask are cleared (see dpns_umask(3)). The S_ISGID, S_ISUID and S_ISVTX bits are silently cleared. path specifies the logical pathname relative to the current DPNS directory or the full DPNS pathname. RETURN VALUE
This routine returns 0 if the operation was successful or -1 if the operation failed. In the latter case, serrno is set appropriately. ERRORS
ENOENT A component of path prefix does not exist or path is a null pathname. EACCES Search permission is denied on a component of the path prefix or write permission on the parent directory is denied. EFAULT path is a NULL pointer. EEXIST path exists already. ENOTDIR A component of path prefix is not a directory. ENOSPC The name server database is full. ENAMETOOLONG The length of path exceeds CA_MAXPATHLEN or the length of a path component exceeds CA_MAXNAMELEN. SENOSHOST Host unknown. SENOSSERV Service unknown. SECOMERR Communication error. ENSNACT Name server is not running or is being shutdown. SEE ALSO
Castor_limits(4), dpns_chdir(3), dpns_chmod(3), dpns_umask(3) AUTHOR
LCG Grid Deployment Team DPNS
$Date: 2001/10/04 12:12:45 $ DPNS_MKDIR(3)
Man Page

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Name of path

I can't see the name of the directory path when i connect to server with telnet. What can i do? Thanks. Example: #cd directory1 #cd directory2 #cd directory3 #_ (current directory is directory3) but i want this #cd directory1 #directory1> cd directory2... (8 Replies)
Discussion started by: mehmetned
8 Replies

2. UNIX for Dummies Questions & Answers

finding pathname for directory

Hi Could someone help me? I'm not sure how to find the full pathname of a directory. I just want to be able to specify a directory. e.g directory1/directory2/directory3/directory4/directory5 I want to be able to put in "directory5" and then i want a return of the full address. ... (3 Replies)
Discussion started by: shomila_a
3 Replies

3. AIX

AIX cp error: "A file or directory in the path does not exist"

Hello fellow UNIX fans, I'm running AIX 4.3 and getting an error message “cp: /a/file2.db: A file or directory in the path does not exist” when I run the following command: cp /b/file.db /a/file2.db It stops every time about 95% of the way through the copy process at 1,073,741,312 bits. ... (3 Replies)
Discussion started by: Jackson123
3 Replies

4. UNIX for Dummies Questions & Answers

How can i assign directory path to a variable in perl?

Hai how can I assign directory path to a variable in perl Thanks&Regards kiran (2 Replies)
Discussion started by: kiran425
2 Replies

5. UNIX for Advanced & Expert Users

How can i assign directory path to a variable in perl?

Hai how can I assign directory path to a variable in perl Thanks&Regards kiran (3 Replies)
Discussion started by: kiran425
3 Replies

6. AIX

Failed mpio path on AIX5.3

I have found failed mpio path on AIX and enabled that failed path as below failed path on AIX bash-3.2# lspath -l hdisk10 Enabled hdisk10 fscsi0 Enabled hdisk10 fscsi0 Failed hdisk10 fscsi3 Enabled hdisk10 fscsi3 Enabled failed path as below chpath -l hdisk10 -p fscsi3 -s enable... (13 Replies)
Discussion started by: murali969
13 Replies

7. Shell Programming and Scripting

How to go to up directory from a given directory in Perl?

I have a Perl script that has a variable for a directory path and I want to define another variable that will navigate to up directory from the given directory path. This is the given directory path in Perl and this is the way the directory path is derived use FindBin; $apphome =... (0 Replies)
Discussion started by: cumeh1624
0 Replies

8. Shell Programming and Scripting

awk - using variables in pattern which contain full pathname

Hello. I would like to make this bash command working. In the following code, the bash variable 'ZYPPER_LOCAL_REP' contain a full pathname like '/path/to/path/somewhere' The command list all available repositories, search for the string 'zipper_local' then on the same line search for... (4 Replies)
Discussion started by: jcdole
4 Replies