+1 vote

I have UploadFile working fine in a loop that selects the files to upload from a list. Can UploadFiles make this faster, or does this feature always send every file in a folder to the target web folder?

If it is possible to specify which files to send with UploadFiles, or if I copy the files to be uploaded to a temporary folder, can each successive file upload trigger real-time display of the filename, for example in a ListBox?

by (750 points)

1 Answer

0 votes

UploadFiles won't be faster.

UploadFiles takes LocalSearchOptions which you can use to specify patterns matching the files you want to upload.

You can use BatchProgress to get information of the currently processed file.

Hope this helps.

by (297k points)
...