Hi. i'm trying to copy a binary already with a predefined permissions. I got this code:

FILE *f1, *f2;
  char cp;
f1 = fopen("file1","rb");
f2 = fopen("file2","wb");
while(!feof(f1)) {
cp = fgetc(f1);
if(!feof(f1)) fputc(cp, f2);
fclose(f1);
fclose(f2);

but this just copy a file. But what i'm trying to do is copy file for example with permissions 0777.
i saw somewhere that people using something like this:

f1=open("file1",O_RDONLY);
f2=open("file2",O_WRONLY|O_CREAT,0777);

i was trying many ways but always it copy a binary into another which is just empty file. Plz help

Recommended Answers

All 3 Replies

The open flags do not set the file permissions -- they are two completly different things. After copying the file you have to change the permissions. Here's how to do it.

See here for information on the permissions
http://linux.die.net/man/2/open

always it copy a binary into another which is just empty file

You might post this code that always produces empty copies so we can see what goes wrong.

thank you for your replies, but i have to deal with it later because now i have devastating exams and absolutely now free time for programming ;(

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.