Sponsored Content
Top Forums Programming How to open DIR (with nisted DIR) using C? Post 302717343 by fwrlfo on Thursday 18th of October 2012 04:37:21 AM
Old 10-18-2012
How to open DIR (with nisted DIR) using C?

by c code
if I want to open directory that is come after name of excuted file for example:

./open dir1

it go to dir1 and open it and read every thing insde it......
...

and other problem is how I should read every directory inside that directory and open it to read it and so on?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

script to go to a different dir to run a commandline prompt in that dir

Hi, I need to know how I'll be able to write a script that can goto a different dir where I don't have access to read,write and execute and also to run a commandline prompt in that dir with one file whose path has to be specified in that command. Will I be able to do this? Any ideas or... (2 Replies)
Discussion started by: ann_124
2 Replies

2. Shell Programming and Scripting

a script to clone a dir tree, & overwrite the dir struct elsewhere?

hi all, i'm looking for a bash or tcsh script that will clone an empty dir tree 'over' another tree ... specifically, i'd like to: (1) specify a src directory (2) list the directory tree/hiearchy beneath that src dir, w/o files -- just the dirs (3) clone that same, empty dir hierarchy to... (2 Replies)
Discussion started by: OpenMacNews
2 Replies

3. Shell Programming and Scripting

How do I define a particular dir in PATH variable and then unset that dir

How do I define a particular dir in front of PATH variable and then run some job and then at the end of job SET the PATH variable to original? in a script, WILL something like this work: ORIG_PATH=$PATH export PATH=/dir1/dir2:$PATH RUN SOME JOBS ..... unset PATH EXPORT... (2 Replies)
Discussion started by: Hangman2
2 Replies

4. UNIX and Linux Applications

CPIO Problem, copy to the root dir / instead of current dir

HI all, I got a CPIO archive that contains a unix filesystem that I try to extract, but it extract to the root dir / unstead of current dir, and happily it detects my file are newer otherwise it would have overwrited my system's file! I tried all these commands cpio -i --make-directories <... (2 Replies)
Discussion started by: nekkro-kvlt
2 Replies

5. Shell Programming and Scripting

A script to find dir, delete files in, and then del dir?

Hello!! I have directories from 2008, with files in them. I want to create a script that will find the directoried from 2008 (example directory: drwxr-xr-x 2 isplan users 1024 Nov 21 2008 FILES_112108), delete the files within those directories and then delete the directories... (3 Replies)
Discussion started by: bigben1220
3 Replies

6. Shell Programming and Scripting

Perform action in dir if dir has .git subdir

Hi, I want to run git status for the dir which has subdir ".git" in it with dir path mentioned in output log? If a dir does not have .git subdir then skip that dir. Dir will have 100 main dirs & 500 + subdirs and so on. I appreciate all your help :b: (4 Replies)
Discussion started by: dragon.1431
4 Replies

7. Shell Programming and Scripting

moving files from a dir in one machine to a dir in another machines

Hi, I am a unix newbie.I need to write a shell script to move my oracle READ WRITE datafiles from one serevr to another. I need to move it from /u01/oradata/W1KK/.. to /u01/oradata/W2KK, /u02/oradata/W1KK/.. to /u02/oradata/W2KK. That is, I actaully am moving my datafiles from one database to... (2 Replies)
Discussion started by: mathews
2 Replies

8. UNIX for Dummies Questions & Answers

How to list all files in dir and sub-dir's recursively along with file size?

I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In have to list all the files in directory and its sub directories along with file path and size of the file Please help me in this regard and many thanks in advance. (3 Replies)
Discussion started by: nmakkena
3 Replies

9. Shell Programming and Scripting

KSH - Find paths of multiple files in CC (dir and sub-dir))

Dear Members, I have a list of xml files like abc.xml.table prq.xml.table ... .. . in a txt file. Now I have to search the file(s) in all directories and sub-directories and print the full path of file in a output txt file. Please help me with the script or command to do so. ... (11 Replies)
Discussion started by: Yoodit
11 Replies

10. AIX

Assign read write permission to the user for specific dir and it's sub dir and files in AIX

I have searched this quite a long time but couldn't find the right method for me to use. I need to assign read write permission to the user for specific directories and it's sub directories and files. I do not want to use ACL. I do not want to assign user the same group of that directories too.... (0 Replies)
Discussion started by: blinkingdan
0 Replies
directory(3)						     Library Functions Manual						      directory(3)

Name
       opendir, readdir, telldir, seekdir, rewinddir, closedir - directory operations

Syntax
       #include <sys/types.h>
       #include <sys/dir.h>

       DIR *opendir(dirname)
       char *dirname;

       struct direct *readdir(dirp)
       DIR *dirp;

       long telldir(dirp)
       DIR *dirp;

       void seekdir(dirp, loc)
       DIR *dirp;
       long loc;

       void rewinddir(dirp)
       DIR *dirp;

       int closedir(dirp)
       DIR *dirp;

Description
       The library routine opens the directory named by filename and associates a directory stream with it.  A pointer is returned to identify the
       directory stream in subsequent operations.  The pointer NULL is returned if the specified filename can not be accessed, or if  insufficient
       memory is available to open the directory file.

       The  routine  returns  a  pointer  to  the next directory entry.  It returns NULL upon reaching the end of the directory or on detecting an
       invalid operation.  The routine uses the system call to read directories. Since the routine returns NULL  upon  reaching  the  end  of  the
       directory or on detecting an error, an application which wishes to detect the difference must set errno to 0 prior to calling

       The  routine  returns the current location associated with the named directory stream. Values returned by are good only for the lifetime of
       the DIR pointer from which they are derived.  If the directory is closed and then reopened, the value may be invalidated due to	undetected
       directory compaction.

       The routine sets the position of the next operation on the directory stream.  Only values returned by should be used with

       The routine resets the position of the named directory stream to the beginning of the directory.

       The routine closes the named directory stream and returns a value of 0 if successful. Otherwise, a value of -1 is returned and errno is set
       to indicate the error.  All resources associated with this directory stream are released.

Examples
       The following sample code searches a directory for the entry name.
       len = strlen(name);

       dirp = opendir(".");

       for (dp = readdir(dirp); dp != NULL; dp = readdir(dirp))

       if (dp->d_namlen == len && !strcmp(dp->d_name, name)) {

		 closedir(dirp);

		 return FOUND;

	    }

       closedir(dirp);

       return NOT_FOUND;

Environment
       In the POSIX environment, the file descriptor returned in the DIR structure after an call will have the FD_CLOEXEC flag set.  See <fcntl.h>
       for more detail.

Return Values
       Upon  successful  completion, returns a pointer to an object of type DIR.  Otherwise, a value of NULL is returned and errno is set to indi-
       cate the error.

       The routine returns a pointer to an object of type struct dirent upon successful completion.  Otherwise, a value of NULL  is  returned  and
       errno is set to indicate the error.  When the end of the directory is encountered, a value of NULL is returned and errno is not changed.

       The routine returns the current location.  No errors are defined for and

       The routine returns zero upon successful completion.  Otherwise, a value of -1 is returned and errno is set to indicate the error.

Diagnostics
       The routine will fail if:

       [EBADF]	      The dirp argument does not refer to an open directory stream.

       [EINTR]	      The routine was interrupted by a signal.

       The routine will fail if:

       [EACCES]       Search permission is denied for any component of dirname or read permission is denied for dirname.

       [ENAMETOOLONG] The length of the dirname string exceeds {PATH_MAX}, or a pathname component is longer than {NAME_MAX}.

       [ENOENT]       The dirname argument points to the name of a file which does not exist, or to an empty string and the environment defined is
		      POSIX or SYSTEM_FIVE.

       [ENOTDIR]      A component of dirname is not a directory.

       [EMFILE]       Too many file descriptors are currently open for the process.

       [ENFILE]       Too many files are currently open in the system.

       The routine will fail if:

       [EBADF]	      The dirp argument does not refer to an open directory stream.

See Also
       close(2), getdirentries(2), lseek(2), open(2), read(2), dir(5)

																      directory(3)
All times are GMT -4. The time now is 05:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy