-
Notifications
You must be signed in to change notification settings - Fork 2
/
Single Level Directory.c
82 lines (77 loc) · 1.75 KB
/
Single Level Directory.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/******************************************************************************
Single Level Directory
By Sreeram SP
*******************************************************************************/
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
struct
{
char dname[10], fname[10][10];
int fcnt;
}
dir;
void main ()
{
int i,ch;
char f[30];
dir.fcnt = 0;
printf("\nEnter name of directory=");
scanf("%s", dir.dname);
while(1)
{
printf("\n1. Create File");
printf("\n2. Delete File");
printf("\n3. Search File");
printf("\n4. Display Files");
printf("\n5. Exit");
printf("\nEnter your choice=");
scanf ("%d",&ch);
switch(ch)
{
case 1:printf("\nEnter the name of the file=");
scanf("%s", dir.fname[dir.fcnt]);
dir.fcnt++;
break;
case 2:printf("\nEnter the name of the file=");
scanf("%s",f);
for(i=0;i<dir.fcnt;i++)
{
if(strcmp(f,dir.fname[i])==0)
{
printf("File %s is deleted ",f);
strcpy(dir.fname[i],dir.fname[dir.fcnt-1]);
break;
}
}
if(i==dir.fcnt)
printf("File %s not found",f);
else
dir.fcnt--;
break;
case 3:printf("\nEnter the name of the file=");
scanf ("%s",f);
for (i=0;i<dir.fcnt;i++)
{
if(strcmp(f,dir.fname[i])==0)
{
printf("File %s is found",f);
break;
}
}
if(i==dir.fcnt)
printf("File %s not found",f);
break;
case 4:if(dir.fcnt==0)
printf("\nDirectory Empty");
else
{
printf ("\nThe Files are=");
for(i=0;i<dir.fcnt;i++)
printf("\t%s",dir.fname[i]);
}
break;
default:exit (0);
}
}
}