I am trying to create a simple file server in c in linux. The idea is that, i enter the name of the file to be transfered from the server on the client side. The server recives that file name as once the connection is established..But whatever argument i pass it always open first file in the current directory. This is the server code
getcwd(buf3, sizeof(buf3));
dirp = opendir(buf3);
while (dptr = readdir(dirp)) {
if (strcmp(buf, dptr->d_name) == 0);
break;
printf("%s\n", dptr->d_name);
}
string(dptr->d_name);
f = fopen(namelist[n1]->d_name, "r");
//f1=fopen(buf,"r");
if (f1 == NULL)
err_sys("open error");
while (1) //service client till it closes connection
{
fgets(buf2, 50, f1);
buflen = strlen(buf2);
printf("Data Read From File: %d\n", buflen);
if ((n = send(clifd, buf2, buflen, 0)) < 0)
err_sys("send error");
else if (n == 0) {
printf("\nNo Data Recieved");
break;
}
buf2[n] = 0;
}; //end of inner while
close(clifd);
fclose(f1);
exit(0);