Hello Roger,

Thanks for the heads up.  You’re suggesting that I do not use 
libURLftpUploadFile.  Fair enough.  I’m used to uploading data using the PUT 
URL form.  Any suggestion as to how I might change the name of the file, on its 
way, or once it reaches the server?  These files will be uploaded by my 
students, and I’d like to impose a consistent naming convention.

Regards,

Gregory


On Mon, Sep 26, 2011, at 1:00 PM, Roger Eller wrote:

> Hi Gregory.  This is the form I typically use for FTP uploading:
> 
> on mouseUp
>  set the itemDel to "/"
>  answer file "Choose the file"
>  if it is not empty then
>     put it into myFile
>     put item -1 of myFile into tFileName
>     -- change user:pass below to your credentials on FTP server
>     put URL ("binfile:" & myFile) into URL ("
> ftp://user:p...@server.com/path/"; & tFileName)
>  end if
> end mouseUp

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to