Hi,

uploading large files eating all my memory, and its failing to upload files
when file bigger than my memory.


    const_file_iterator file;
    file = cgi.getFile(post);
    if(file != cgi.getFiles().end())
    {
        ofstream out(pathToSave);
        file->writeToStream(out);
        out.close();
    }

is there any other way to do it.

thanks
_______________________________________________
help-cgicc mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/help-cgicc

Reply via email to