Upload medium or larg file size in host (images,multimedia files,…) without ftp protocol

时光毁灭记忆、已成空白 提交于 2020-01-03 05:26:18

问题


How can make a uploader file in vb6 to work easyly and can be uploade files into host.

For example (images or multimedia files or other format) and size > small size files for exampe > 500kb or 1 mb , 2 mb or upper sizes .

Please help me to can find any way to designed without ftp protocols.

I think it is possible to use of msxml refrences but i don't know how can designed it by msxml .

[thanks]


回答1:


You could upload to a HTTP like dropbox. The downside of simple HTTP file transfer is that it is fairly easy for somebody to grab your credentials using a common tool like Fiddler. However that is also the case with FTP just a bit harder. The upside to uploading to dropbox is that you could have any file size (providing you have the space on your dropbox account).

I haven't tried using the dropbox upload api yet but you can read the documentation here, take a look at the PUT and POST methods: https://www.dropbox.com/developers/core/docs

If you just wanted to upload to dropbox and you have the dropbox client installed you could just save the file to the dropbox folder on your computer and it would auto upload.



来源:https://stackoverflow.com/questions/19133428/upload-medium-or-larg-file-size-in-host-images-multimedia-files-without-ft

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!