When I compile and run my C++ program that deletes a file called example.txt (below)

#include <stdio.h>

int main ()
{
  if( remove( "example.txt" ) != 0 )
    perror( "Error deleting file" );
  else
    puts( "File successfully deleted" );
  return 0;
}

It comes out like this...

cd c:\Users\Mark\Desktop  
C:\Users\Mark\Desktop>app.exe  
Error deleting file: Permission denied  

I lifted all restrictions on the file and there is full access to anyone (that should include my program).

Any solutions?

EDIT

When I type in del example.txt on command prompt it works.

Weird...

link|improve this question

4  
dumb question but do you have the file opened by another program? – SB. Aug 23 '10 at 17:15
Well, I have a shortcut that opens a batch file that runs the program So yes... – Mark Aug 23 '10 at 17:19
1  
What's the error message? perror should give you an error string. There's nothing right after your "it comes out like this" line. Can you delete that file in a command line? – EboMike Aug 23 '10 at 17:21
What happens when instead of app.exe you type del example.txt in the command prompt? – Darin Dimitrov Aug 23 '10 at 17:21
5  
This is not a C++ problem it is an OS problem. – Loki Astari Aug 23 '10 at 17:32
show 1 more comment
feedback

3 Answers

up vote 1 down vote accepted

I guess remove() takes the path as a parameter. So we need to specify the entire path as a parameter for remove function.

eg: remove("home/xxx/example.txt");

link|improve this answer
feedback

You are giving the exact same example listed in Cplusplus so, if the program doesn't work, I think it is an O.S Related problem.

If you are using windows 2k or greater, try the DeleteFile api and look if the same error happens.

I can't add comments to the question, so, sorry if this isn't a proper answer.

Be sure you don't have the file opened. Try creating a new file from your program and deleting it.

link|improve this answer
feedback

Mark, SB is asking if some other program has opened / locked example.txt ... say if you have notepad open to (re-)create that file.

link|improve this answer
No nothing open to edit it with, this is a confusing problem :P – Mark Aug 23 '10 at 18:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.