-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFile.h
More file actions
93 lines (88 loc) · 1.51 KB
/
File.h
File metadata and controls
93 lines (88 loc) · 1.51 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
#include<iostream>
#include<fstream>
using namespace std;
class File
{
public:
string file (string fileName , int LineNo)
{
string temp;
int i = 1;
ifstream obj(fileName);
while(getline(obj , temp))
{
if(i == LineNo)
{
return temp ;
}
i++;
}
}
int search(string fileName)
{
ifstream file;
file.open(fileName);
string search;
int found = 1;
cin >> search;
string input = "";
while(!file.eof())
{
int i = 0;
getline(file , input);
if(search[i] == input[i])
{
i++;
if(search[i] == input[i])
{
i++;
if(search[i] == '\0')
{
break;
}
else
{
if(search[i] == input[i])
{
break;
}
}
}
}
found++;
}
return found;
}
void deletee(string fileName)
{
ifstream file1;
file1.open(fileName);
ofstream file2;
file2.open("temp.txt");
string temp;
int line = 1;
int del_line;
del_line = search(fileName);
while (!file1.eof())
{
if (line == del_line)
{
for(int i = 1; i <= 6; i++)
{
getline(file1 , temp);
line++;
}
}
else
{
getline(file1 , temp);
file2 << temp << "\n";
line++;
}
}
file1.close();
file2.close();
remove("physics.txt");
rename("temp.txt" , "physics.txt");
}
};