ASPUploader - File Overwrite

Last post 11-12-2014, 9:55 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  11-07-2014, 6:37 PM 80453

    ASPUploader - File Overwrite

    Hi,

    I just purchased AspUploader and need to allow the Overwriting of existing files automatically.

    I could not see any Properties to Overwrite existing files (i did see a delete option however)

    Is there an option to allow Overwriting?

    By way of example when a file is uploaded with the same file name  it appends with a date/time stamp such as if 3251g exists in that folder then file uploaded is renamed automatically to  3251g-2014117182936.JPG

    I want the same file name to be uploaded and replace the old file (not change its name).

    Thanks

    Mike 

  •  11-12-2014, 9:55 AM 80455 in reply to 80453

    Re: ASPUploader - File Overwrite

    Hi,

     

    If you want to voerwrite the same name file, then please do not use "SaveDirectory" setting to save the upload file. You can use method "CopyTo()" and "MoveTo()" to handle the upload file store location and file name. Below is the example to use these methods.

     

    1. <%@ Language="VBScript" %>  
    2. <!-- #include file="aspuploader/include_aspuploader.asp" -->  
    3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  
    4. <html xmlns="http://www.w3.org/1999/xhtml">  
    5. <head>  
    6.     <title>  
    7.         example  
    8.     </title>  
    9. </head>  
    10. <body>  
    11.     <div>                          
    12.             <form id="form1" method="POST">  
    13.             <%  
    14.             Dim uploader  
    15.             Set uploader=new AspUploader  
    16.             uploader.MaxSizeKB=10240  
    17.             uploader.Name="myuploader"  
    18.             uploader.InsertText="Upload File (Max 10M)"  
    19.             uploader.MultipleFilesUpload=true  
    20.             %>  
    21.             <%=uploader.GetString() %>  
    22.             </form>  
    23.               
    24.             <br/><br/>  
    25. <%  
    26. If Request.Form("myuploader")&""<>"" Then  
    27.   
    28.     Dim list,i  
    29.       
    30.     'Gets the GUID List of the files based on uploader name   
    31.     list=Split(Request.Form("myuploader"),"/")  
    32.   
    33.     For i=0 to Ubound(list)  
    34.         Dim mvcfile  
    35.         'get the uploaded file based on GUID  
    36.         Set mvcfile=uploader.GetUploadedFile(list(i))  
    37.         mvcfile.CopyTo(Server.MapPath(".")&"/savefiles/"&mvcfile.FileName)  
    38.     Next  
    39. End If  
    40.   
    41. %>  
    42.               
    43.     </div>  
    44. </body>  
    45. </html>  
     

    Regards,

     

    Ken 

View as RSS news feed in XML