so far the user can select a file that he want to open to be copied, is there a way of letting the user selecting multiple files to be copied to one file? i was thinking of looping around asking the user to add another file if the user wanted to and that would take ages if the user had a lot of files
printf("please give your archive a name and a path:\n");
scanf("%s", &archive_name);
create_pointer = fopen( archive_name, "wb");
printf("please type in the path for the file you want to archive\n");
scanf("%s",&original_file);
open_pointer=fopen(original_file,"rb");
original_pointer=fopen(original_file,"rb");
copy_pointer = fopen( archive_name,"wb");
is there way of letting the user selecting multiple files ?