You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tasks/LargeFileUploadTask.md
+70-25
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# Large File Upload Task - Uploading large files to OneDrive.
1
+
# Large File Upload Task - Uploading large files to OneDrive
2
2
3
-
This task simplifies the implementation of onedrive's [resumable upload](https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/driveitem_createuploadsession).
3
+
This task simplifies the implementation of OneDrive's [resumable upload](https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/driveitem_createuploadsession).
4
4
5
5
## Creating the client instance
6
6
@@ -20,47 +20,60 @@ Get files from the input element and start uploading.
20
20
asyncfunction fileUpload(elem) {
21
21
let file =elem.files[0];
22
22
try {
23
-
let response =awaitlargeFilUpload(client, file, file.name);
23
+
let response =awaitlargeFileUpload(client, file, file.name);
0 commit comments