-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9_singleLevelFile.c
37 lines (35 loc) · 1016 Bytes
/
9_singleLevelFile.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
9. Write a C program to simulate the Single level directory file organization technique.
*/
#include <stdio.h>
#include <string.h>
int main() {
int nf = 0, i = 0, j = 0, ch;
char mdname[10], fname[10][10], name[10];
printf("\nEnter the directory name:");
scanf("%s", mdname);
printf("\nEnter the number of files:");
scanf("%d", &nf);
do {
printf("\nEnter file name to be created:");
scanf("%s", name);
for(i = 0; i < nf; i++) {
if(!strcmp(name, fname[i]))
break;
}
if(i == nf) {
strcpy(fname[j++], name);
nf++;
} else {
printf("\nThere is already %s\n", name);
}
printf("\nDo you want to enter another file(yes - 1 or no - 0):");
scanf("%d", &ch);
} while(ch == 1);
printf("\n\nDirectory name is: %s\n", mdname);
printf("\nFiles names are: \n");
for(i = 0; i < j; i++) {
printf("%s\n", fname[i]);
}
return 0;
}