/************************************************************************ qDecoder - Web Application Interface for C/C++ http://www.qDecoder.org Copyright (C) 2001 The qDecoder Project. Copyright (C) 1999,2000 Hongik Internet, Inc. Copyright (C) 1998 Nobreak Technologies, Inc. Copyright (C) 1996,1997 Seung-young Kim. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Copyright Disclaimer: Hongik Internet, Inc., hereby disclaims all copyright interest. President, Christopher Roh, 6 April 2000 Nobreak Technologies, Inc., hereby disclaims all copyright interest. President, Yoon Cho, 6 April 2000 Seung-young Kim, hereby disclaims all copyright interest. Author, Seung-young Kim, 6 April 2000 Author: Seung-young Kim Hongik Internet, Inc. 17th Fl., Marine Center Bldg., 51, Sogong-dong, Jung-gu, Seoul, 100-070, Korea. Tel: +82-2-753-2553, Fax: +82-2-753-1302 ************************************************************************/ #include "qDecoder.h" #define BASEPATH "upload" int main(void) { int i; // qDecoderSetUploadBase() and qDecoder() should be called at the first line of main() for progress bar upload. qDecoderSetUploadBase("tmp", 24 * 60 * 60); qDecoder(); qContentType("text/html"); printf("You entered: %s\n", qValueDefault("", "text")); for(i = 1; i <= 3; i++) { char *filename, *contenttype, *savepath; int length; char newpath[1024]; if((length = qiValue("binary%d.length", i)) > 0) { filename = qValue("binary%d.filename", i); contenttype = qValue("binary%d.contenttype", i); savepath = qValue("binary%d.savepath", i); sprintf(newpath, "%s/%s", BASEPATH, filename); if(rename(savepath, newpath) == -1) qError("Can not move uploaded file. %s-%s", savepath, newpath); printf("
%s (%d bytes, %s) saved.", newpath, filename, length, contenttype); } } qFree(); return 0; }