Whenever I use open I get the permission denied error. But when I use fopen it opens the file fine. What is wrong with my code?
mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
char *filename = "dataread.txt";
rec = open(filename ,O_WRONLY | O_CREAT | O_TRUNC,mode);
if(rec == -1)
{
perror("\nopen error 1:");
exit(1);
}
Error:
open error 1:: Permission denied
With fopen I don't get this error.
filenameshould be aconst char *, by the way. – Kerrek SB Sep 29 '11 at 14:15fopen? And I removed the C++ tag as I haven't seen any C++. – sixlettervariables Sep 29 '11 at 14:15opentakes aconst char *(meaning it won't modify the string you pass) doesn't mean you have to use aconst char *variable (or any pointer variable whatsoever) to store the address of the string you want to pass. – R.. Sep 29 '11 at 16:46