-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
71 lines (61 loc) · 1.91 KB
/
main.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
#include <iostream>
#include "FileManager.h"
int main(){
int choice;
string filename, content, directory;
bool append;
while (true)
{
cout << "\n********** File Management System **********\n" << endl;
cout << "1: Create File" << endl;
cout << "2: Delete File" << endl;
cout << "3: Read File" << endl;
cout << "4: Write to File" << endl;
cout << "5: List Files in Directory" << endl;
cout << "6: Exit" << endl;
cout << "Enter your choice: ";
cin >> choice;
cin.ignore();
switch (choice)
{
case 1:
cout << "\nEnter filename: ";
getline(cin, filename);
cout << "Enter the content to the file: ";
getline(cin, content);
FileManager::createFile(filename, content);
break;
case 2:
cout << "\nEnter filename: ";
getline(cin, filename);
FileManager::deleteFile(filename);
break;
case 3:
cout << "\nEnter filename: ";
getline(cin, filename);
FileManager::readFile(filename);
break;
case 4:
cout << "\nEnter filename: ";
getline(cin, filename);
cout << "Enter the content to the file: ";
getline(cin, content);
cout << "1: Append\n2: Overwrite\nEnter (1/0): ";
cin >> append;
cin.ignore();
FileManager::writeFile(filename, content, append);
break;
case 5:
cout << "\nEnter directory: ";
getline(cin, directory);
FileManager::listFile(directory);
break;
case 6:
cout << "Exiting...\n";
return 0;
default:
cerr << "Invalid choice. Please try again." << endl;
break;
}
}
}