Jump to content
Fórum Script Brasil
  • 0

Usando funçoes read e write


demonofnight

Question

Estou usando as funçoes read e write, segue o codigo.

#include<stdio.h>

#include<fcntl.h>

#include<unistd.h>

#include<sys/stat.h>

#include<sys/types.h>

int main(int argc,char *argv[])

{

int f=0,n;

char l[80], cmp2[80];

char* cpy;

struct stat s;

if(geteuid()==s.st_uid)

if(s.st_mode & S_IRUSR)

f=1;

else if(getegid()==s.st_gid)

if(s.st_mode & S_IRGRP)

f=1;

else if(s.st_mode & S_IROTH)

f=1;

if(!f)

{

printf("Permission denied");

exit(1);

}

f=open(argv[1],O_RDONLY);

while((n=read(f,l,80))>0){

/*esse bloco da erro

memcpy(cmp2, l, n);

cmp2[n+1] = '';

printf("%s",l);

*/

write(1,l,n); //Isso funciona.

Eu queria pegar os dados do read e passar para uma variavel.

Porem quando eu tento os dados vem errado, um arquivo de 300MB fica apenas com 250, parece que tem algum erro na hora de ler os dados da variavel, mesmo retirando o \o isso ainda acontece, se eu tentar ler do l direto tambem não funciona.

Estou usando isso, pois é dessa maneira que eles implementam o cat, e eu estou precisando ler arquivos de 100gb, para isso preciso de uma implementacao de leitura rapido.

alguém poderia me ajudar a passar isso para uma variavel?

VLW GALERA

}}

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...