Files

My source works perfect.The problem is that the (remove(),rename()) functions works but return nonzero number,so they fails all the time.
Why??
THANKS.

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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <fstream>


using namespace std;

int main()
{
    char array[100]={"1)open-write,2)open-read,3)rename,4)delete"};
    char name_of_file[100];
    string direction;
    string choice;
    string write;
    string read;
    char new_name[100];
    int menu;
    int player=1;
    ofstream outfile;
    ifstream infile;

while(player==1)
{
player++;

cout<<"Menu:"<<endl;
for(int i=0;i<=50;i++)
cout<<array[i];

cout<<endl;

cout<<"\n\nChoice one of these:";
cin>>menu;

switch(menu)
{

    case 1:
    cout<<"\nYou choice: open-write\n ====================="<<endl;
    break;
    case 2:
    cout<<"\nYou choice the: open-read\n====================="<<endl;
    break;
    case 3:
    cout<<"\nYou choice the: rename\n====================="<<endl;
    break;
    case 4:
    cout<<"\nYou choice the: delete\n====================="<<endl;
    break;
    default :
    cout<<"\nWrong choice.Choose again.\n========================"<<endl;
    player--;

}
}

cout<<"\n\nName of file:";
cin>>name_of_file;

if( strcmp(name_of_file,"myfileprogram.txt")==0 )
{

    cout<<"\nThere is a filename like this."<<endl;
    cout<<"\n\nPlace that file is saved:";
    cin>>direction;


    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////

    if(direction=="C:" || direction=="c:")
    {

     ////////////////////////////////////////////////////////////
     ////////////////////////////////////////////////////////////
     //open-write
     if(menu==1)
     {
      outfile.open("C:\\myfileprogram.txt",ios::out | ios::app);
      if(outfile.is_open())
        {
          cout<<"\nFile is opened";

          cout<<"\n\nWrite:";
          cin.ignore();
          getline(cin,write);

          outfile<<write;

        }

       else
        {
           cout<<"\nFile is not opened"<<endl;s;
           exit;
        }

     }

     ////////////////////////////////////////////////////////////
     ////////////////////////////////////////////////////////////
     //open-read
     else if(menu==2)
     {
      infile.open("C:\\myfileprogram.txt",ios::in);
      if(infile.is_open())
        {
          cout<<"\nFile is opened";

          getline(infile,read);
          cout<<"\n\n\nFile:"<<read<<endl;

        }

       else
        {
           cout<<"\nFile is not opened"<<endl;;
           exit;
        }

     }


     ////////////////////////////////////////////////////////////
     ////////////////////////////////////////////////////////////
     //rename
     else if(menu==3)
     {
         cout<<"\n\nGive new name:";
         cin>>new_name;

         int ren=rename(name_of_file,new_name);

         if(ren==0)
          cout<<"\nFile successfully renamed"<<endl;;
         else
          cout<<"\nError renaming file"<<endl;;
     }


     ////////////////////////////////////////////////////////////
     ////////////////////////////////////////////////////////////
     //delete
     else if(menu==4)
     {
        int rem=remove(name_of_file);

        if(rem==0)
         cout<<"\nFile successfully deleted"<<endl;
        else
         cout<<"\nError deleting file"<<endl;;

     }


    }


    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////

    else if(direction=="default")
      {

       ////////////////////////////////////////////////////////////
       ////////////////////////////////////////////////////////////
       //open-write
        if(menu==1)
        {
          outfile.open("C:\\myfileprogram.txt",ios::out | ios::app);
          if(outfile.is_open())
           {
             cout<<"\nFile is opened";

             cout<<"\n\nWrite:";
             cin.ignore();
             getline(cin,write);

             outfile<<write;
           }

          else
           {
              cout<<"\nFile is not opened"<<endl;;
              exit;
           }

        }

        ////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////
        //open-read
       else if(menu==2)
        {
          infile.open("C:\\myfileprogram.txt",ios::in);
          if(infile.is_open())
           {
             cout<<"\nFile is opened";

             getline(infile,read);
             cout<<"\n\n\nFile:"<<read<<endl;

           }

          else
           {
              cout<<"\nFile is not opened"<<endl;;
              exit;
           }

        }


        ////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////
        //rename
        else if(menu==3)
        {
         cout<<"\n\nGive new name:";
         cin>>new_name;

         int res=rename(name_of_file,new_name);

         if(res==0)
          cout<<"\nFile successfully renamed"<<endl;;
         else
          cout<<"\nError renaming file"<<endl;;
        }


        ////////////////////////////////////////////////////////////
        ////////////////////////////////////////////////////////////
        //delete
        else if(menu==4)
        {
          int rem=remove(name_of_file);

          if(rem==0)
           cout<<"\nFile successfully deleted"<<endl;;
          else
           cout<<"\nError deleting file"<<endl;;
        }


      }

    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////
    ////////////////////////////////////////////////////////////

    else
     {
        cout<<"\nWrong directory";
        exit;
     }


}


else
{
  cout<<"\nThere is no file like this."<<endl;
  exit;
}


return 0;
}
-To make code not easily breakable, give more leverage (less strict rules) to the user. Instead of accepting specific file names, just ask for a file and check if it exists where the user specified, then just act accordingly. i.e. don't check for the directory where the file is saved, instead just try opening the file at the path the user specified. I saw you were doing this on lines 62 and 170

-The code contains a lot of syntax errors which when fixed should work.
-The problem lies with the syntax errors and not the remove/rename functions
-I removed the errors and sure enough, it worked

Output:
$ ./File
Menu:
1)open-write,2)open-read,3)rename,4)delete


Choice one of these:3

You choice the: rename
=====================


Name of file:myfileprogram.txt

There is a filename like this.


Place that file is saved:default


Give new name:myfile2program.txt

File successfully renamed
-bash:Desktop$ ./File
Menu:
1)open-write,2)open-read,3)rename,4)delete


Choice one of these:4

You choice the: delete
=====================


Name of file:myfileprogram.txt

There is a filename like this.


Place that file is saved:default

File successfully deleted
Last edited on
Topic archived. No new replies allowed.