.net - FTP fileupload with progress -
.net - FTP fileupload with progress -
i'm going write ftp client using .net framework. want upload files , show how many bytes (or kilobytes) uploaded. i've been looking way of uploading file on ftp monitoring progress of them using libraries.
is there way of uploading on ftp , observing process using standard .net features? if yes, grateful code snippet.
you can utilize webclient
that. register uploadprogresschanged
, uploadfilecompleted
events , upload file using uploadfileasync()
.
.net ftp
Comments
Post a Comment