timemachine
Boom Bhadam Dhishkyao
This thread will contain the advanced topics in C under UNIX plateform. If you use windows, dont get disappointed because "CYGWIN" is available to give a unix like enviornment in windows. You can search and download it. Rembember you will only need the GCC part.
Let's start with the main concern:
File Access and Directory System Calls
Directory Handling Functions(contained in unistd.h)
This basically involves calling appropriate functions to traverse a directory hierarchy or viewing its contents.
This is a function for changing directory through a program.
For eg. it can be used as given in the code
In this code we are applying chdir on the directory which we will pass through a command line argument. If fails, the program will exit with error code 1.
Like this, there is one more function
This function will return the current working directory. path is a string type variable which would be used to store the current working directory.
same as the pwd command.
Now the functions which can make the scanning and sorting of directories possible. All the functions stated below are <sys/types.h> and <sys/dir.h>
This function reads the directory name and stores in dirname. Then it builds a array of pointers and keep the directory names in that array(here it is namelist).
(*select)() is a pointer to a function which is called with a pointer to a directory entry (defined in <sys/types> and should return a non zero value if the directory entry should be included in the array. If this pointer is NULL, then all the directory entries will be included.
The last argument is the pointer to a routine qsort , which sorts the complete array. If this pointer is null then the array is not sorted.
scandir returns the current directory (.) and the directory above this (..) as well as all files so we need to check for these and return FALSE so that they are not included in our list.
This program can be furthur modified to find a special type of file. Like if we want to find only the files which contain .h , .c or .o , then we will have to change the file_select function.
(Just minor changes)
It goes like this
Just add this code to the file_select and then you will be able to get only the files. this can also be done for other file extensions.
This thread is not closed yet. I will post more topics under this thread about the advanced C under unix plateform.
References are taken from the first book I read about this topic. Its name just slipped out of my mind, but i will reference it later in this post.
Any queries, you should ask in this thread.
Thank You
More things will be added soon
Let's start with the main concern:
File Access and Directory System Calls
Directory Handling Functions(contained in unistd.h)
This basically involves calling appropriate functions to traverse a directory hierarchy or viewing its contents.
This is a function for changing directory through a program.
Code:
int chdir(char * path);
Code:
#include <stdio.h>
#include <unistd.h>
int main(int argc, char *argv)
{
if(argc<2)
{
printf("Usage: <executable name> path");
exit(1);
}
if(chdir(argv[1])!=0)
{
printf("Error in chdir\n");
exit(1);
}
}
In this code we are applying chdir on the directory which we will pass through a command line argument. If fails, the program will exit with error code 1.
Like this, there is one more function
Code:
char *getwd(char *path);
Now the functions which can make the scanning and sorting of directories possible. All the functions stated below are <sys/types.h> and <sys/dir.h>
Code:
scandir(char *dirname, struct direct **namelist, int (*select)(), int (*compar)());
(*select)() is a pointer to a function which is called with a pointer to a directory entry (defined in <sys/types> and should return a non zero value if the directory entry should be included in the array. If this pointer is NULL, then all the directory entries will be included.
The last argument is the pointer to a routine qsort , which sorts the complete array. If this pointer is null then the array is not sorted.
Code:
[FONT=Verdana]#include <sys/types.h>
#include <sys/dir.h>
#include <sys/param.h>
#include <stdio.h>
#define FALSE 0
#define TRUE !FALSE
extern int alphasort();
char pathname[MAXPATHLEN];
main()
{
int count,i;
struct direct **files;
int file_select();
if (getwd(pathname) == NULL )
{
printf("Error getting path\n");
exit(0);
}
printf("Current Working Directory = %s\n",pathname);
count = scandir(pathname, &files, file_select, alphasort);
/* If no files found, make a non-selectable menu item */
if(count <= 0)
{
printf(``No files in this directory\n'');
exit(0);
}
printf(``Number of files = %d\n'',count);
for (i=1;i<count+1;++i)
printf(``%s '',files[i-1]->d_name);
printf(``\n''); /* flush buffer */
}
[/FONT] [FONT=Verdana]int file_select(struct direct *entry)
[/FONT]
[FONT=Verdana]{[/FONT]
[FONT=Verdana] if ((strcmp(entry->d_name, ``.'') == 0) ||(strcmp(entry->d_name,``..'') == 0))
[/FONT]
[FONT=Verdana] return (FALSE);
else
return (TRUE);
}[/FONT]
scandir returns the current directory (.) and the directory above this (..) as well as all files so we need to check for these and return FALSE so that they are not included in our list.
This program can be furthur modified to find a special type of file. Like if we want to find only the files which contain .h , .c or .o , then we will have to change the file_select function.
It goes like this
Code:
[FONT=Verdana]ptr = rindex(entry->d_name, '.')
if ((ptr != NULL) &&((strcmp(ptr, ``.c'') == 0)||(strcmp(ptr, ``.h'') == 0)|| (strcmp(ptr, ``.o'') == 0) ))
return (TRUE);[/FONT]
This thread is not closed yet. I will post more topics under this thread about the advanced C under unix plateform.
References are taken from the first book I read about this topic. Its name just slipped out of my mind, but i will reference it later in this post.
Any queries, you should ask in this thread.
Thank You
More things will be added soon