-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileExplorerOptions.cpp
75 lines (69 loc) · 1.25 KB
/
FileExplorerOptions.cpp
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
#include"headers.h"
using namespace std;
int curr_x=1;
vector<string> dir_ent;
string root;
void FileExplorerOptions()
{
struct termios old, news;
tcgetattr(fileno(stdin), &old);
news = old;
news.c_lflag &= ~ICANON;
news.c_lflag &= ~ECHO;
char ch;
if (tcsetattr(fileno(stdin),TCSAFLUSH,&news) != 0)
{
fprintf(stderr, "Could not set attributes\n");
}
else
{
gotoxy(1,1);
while(1)
{
ch=getchar();
if(ch=='w') //navigating upwards
{
NavigateContentUpwards();
}
else if(ch=='s') //navigating downwards
{
NavigateContentDownwards();
}
else if(int(ch)==10) //exploring the file upwards
{
ExploreFileUpwards();
}
else if(ch==0x7f) //exploring the file backwards
{
ExploreFileDownwards();
}
else if(ch=='>') //rename a file
{
RenameFileOrFolder();
}
else if(ch=='d') //file deletion
{
DeleteFileOrFolder();
}
else if(ch=='c') //create a folder
{
CreateFolder();
}
else if(ch=='f') //creating file
{
CreateFile();
}
else if(ch=='o') //opening default application
{
ApplicationViewer();
}
else if(ch=='q') //quit filemanager
{
clrscr();
break;
}
}
}
clrscr();
tcsetattr(fileno(stdin), TCSANOW, &old);
}