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: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,6 +133,7 @@ Samples are in the [`samples/`](https://github.com/googleapis/nodejs-storage/tre
133
133
| Download File |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadFile.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadFile.js,samples/README.md)|
134
134
| Download a File in Chunks Utilzing Transfer Manager |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadFileInChunksWithTransferManager.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadFileInChunksWithTransferManager.js,samples/README.md)|
135
135
| Download File Using Requester Pays |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadFileUsingRequesterPays.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadFileUsingRequesterPays.js,samples/README.md)|
136
+
| Download Folder With Transfer Manager |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadFolderWithTransferManager.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadFolderWithTransferManager.js,samples/README.md)|
136
137
| Download Into Memory |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadIntoMemory.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadIntoMemory.js,samples/README.md)|
137
138
| Download Many Files With Transfer Manager |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadManyFilesWithTransferManager.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadManyFilesWithTransferManager.js,samples/README.md)|
138
139
| Storage Download Public File. |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadPublicFile.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadPublicFile.js,samples/README.md)|
@@ -205,6 +206,7 @@ Samples are in the [`samples/`](https://github.com/googleapis/nodejs-storage/tre
205
206
| Stream File Download |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/streamFileDownload.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/streamFileDownload.js,samples/README.md)|
206
207
| Stream File Upload |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/streamFileUpload.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/streamFileUpload.js,samples/README.md)|
207
208
| Upload a directory to a bucket. |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/uploadDirectory.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadDirectory.js,samples/README.md)|
209
+
| Upload Directory With Transfer Manager |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/uploadDirectoryWithTransferManager.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadDirectoryWithTransferManager.js,samples/README.md)|
208
210
| Upload Encrypted File |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/uploadEncryptedFile.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadEncryptedFile.js,samples/README.md)|
209
211
| Upload File |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/uploadFile.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadFile.js,samples/README.md)|
210
212
| Upload File With Kms Key |[source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/uploadFileWithKmsKey.js)|[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadFileWithKmsKey.js,samples/README.md)|
Copy file name to clipboardExpand all lines: samples/README.md
+40Lines changed: 40 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ objects to users via direct download.
52
52
*[Download File](#download-file)
53
53
*[Download a File in Chunks Utilzing Transfer Manager](#download-a-file-in-chunks-utilzing-transfer-manager)
54
54
*[Download File Using Requester Pays](#download-file-using-requester-pays)
55
+
*[Download Folder With Transfer Manager](#download-folder-with-transfer-manager)
55
56
*[Download Into Memory](#download-into-memory)
56
57
*[Download Many Files With Transfer Manager](#download-many-files-with-transfer-manager)
57
58
*[Storage Download Public File.](#storage-download-public-file.)
@@ -124,6 +125,7 @@ objects to users via direct download.
124
125
*[Stream File Download](#stream-file-download)
125
126
*[Stream File Upload](#stream-file-upload)
126
127
*[Upload a directory to a bucket.](#upload-a-directory-to-a-bucket.)
128
+
*[Upload Directory With Transfer Manager](#upload-directory-with-transfer-manager)
127
129
*[Upload Encrypted File](#upload-encrypted-file)
128
130
*[Upload File](#upload-file)
129
131
*[Upload File With Kms Key](#upload-file-with-kms-key)
@@ -752,6 +754,25 @@ __Usage:__
752
754
753
755
754
756
757
+
### Download Folder With Transfer Manager
758
+
759
+
Downloads a folder in parallel utilizing transfer manager.
760
+
761
+
View the [source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadFolderWithTransferManager.js).
762
+
763
+
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/downloadFolderWithTransferManager.js,samples/README.md)
View the [source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/downloadIntoMemory.js).
@@ -2012,6 +2033,25 @@ __Usage:__
2012
2033
2013
2034
2014
2035
2036
+
### Upload Directory With Transfer Manager
2037
+
2038
+
Uploads a directory in parallel utilizing transfer manager.
2039
+
2040
+
View the [source code](https://github.com/googleapis/nodejs-storage/blob/main/samples/uploadDirectoryWithTransferManager.js).
2041
+
2042
+
[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-storage&page=editor&open_in_editor=samples/uploadDirectoryWithTransferManager.js,samples/README.md)
0 commit comments