I am surrently using:
Private Shared Sub FileUploadToDropbox(ByVal filePath As String, ByVal fileName As String, ByVal fileSource As String)
Dim dbx = New DropboxClient("<REDACTED>")
Dim fs = New FileStream(fileSource, FileMode.Open, FileAccess.Read)
Dim updated = dbx.Files.UploadAsync((filePath + ("/" + fileName)), WriteMode.Overwrite.Instance, body:=fs)
End Sub
To upload a folder and file.
How can I then share this folder with a specific email addres, I wish to then notifiy that email address that a share has been created for them.