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
This command clones the repository to your local git folder. To open the project, launch Eclipse and close the Welcome screen. Select **File** then **Open Projects from File System**. Make sure **Detect and configure project natures** is checked. Select **Directory** then navigate to where you stored the cloned repository. Inside the cloned repository, select the **blobAzureApp** folder. Make sure the **blobAzureApp** project appears as an Eclipse project, then select **Finish**.
34
34
35
-
Once the project finishes importing, open **AzureApp.java** (located in **blobQuickstart.blobAzureApp** inside of **src/main/java**), and replace the `accountname` and `accountkey` inside of the `storageConnectionString` string. Then run the application. Specific instructions for completing these tasks are described in the following sections.
35
+
Once the project completes importing, open **AzureApp.java** (located in **blobQuickstart.blobAzureApp** inside of **src/main/java**), and replace the `accountname` and `accountkey` inside of the `storageConnectionString` string. Then run the application. Specific instructions for completing these tasks are described in the following sections.
@@ -73,7 +73,7 @@ Before you continue, check your default directory (*C:\Users\<user>\AppData\Loca
73
73
>[!NOTE]
74
74
>You can also use a tool such as the [Azure Storage Explorer](https://storageexplorer.com/?toc=%2fazure%2fstorage%2fblobs%2ftoc.json) to view the files in Blob storage. Azure Storage Explorer is a free cross-platform tool that allows you to access your storage account information.
75
75
76
-
After you've verified the files, press the **Enter** key to finish the demo and delete the test files. Now that you know what the sample does, open the **AzureApp.java** file to look at the code.
76
+
After you've verified the files, press the **Enter** key to complete the demo and delete the test files. Now that you know what the sample does, open the **AzureApp.java** file to look at the code.
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-quickstart-blobs-java.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ This section walks you through preparing a project to work with the Azure Blob s
36
36
37
37
Create a Java application named *blob-quickstart-v12*.
38
38
39
-
1. In a console window (such as cmd, PowerShell, or Bash), use Maven to create a new console app with the name *blob-quickstart-v12*. Type the following **mvn** command to create a simple "Hello world!" Java project.
39
+
1. In a console window (such as cmd, PowerShell, or Bash), use Maven to create a new console app with the name *blob-quickstart-v12*. Type the following **mvn** command to create a "Hello world!" Java project.
The following code cleans up the resources the app created by removing the entire container using the [delete](https://azuresdkdocs.blob.core.windows.net/$web/java/azure-storage-blob/12.0.0/com/azure/storage/blob/BlobContainerClient.html#delete--) method. It also deletes the local files created by the app.
277
277
278
-
The app pauses for user input by calling `System.console().readLine()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were actually created correctly, before they are deleted.
278
+
The app pauses for user input by calling `System.console().readLine()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were created correctly, before they are deleted.
279
279
280
280
Add this code to the end of the `Main` method:
281
281
@@ -351,4 +351,4 @@ To see Blob storage sample apps, continue to:
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-quickstart-blobs-nodejs.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ From the project directory:
84
84
85
85
1. Open another new text file in your code editor
86
86
1. Add `require` calls to load Azure and Node.js modules
87
-
1. Create the structure for the program, including very basic exception handling
87
+
1. Create the structure for the program, including basic exception handling
88
88
89
89
Here's the code:
90
90
@@ -220,7 +220,7 @@ for await (const blob of containerClient.listBlobsFlat()) {
220
220
221
221
### Download blobs
222
222
223
-
Download the previously created blob by calling the [download](/javascript/api/@azure/storage-blob/blockblobclient#download-undefined---number--undefined---number--blobdownloadoptions-) method. The example code includes a helper function called `streamToString` which is used to read a Node.js readable stream into a string.
223
+
Download the previously created blob by calling the [download](/javascript/api/@azure/storage-blob/blockblobclient#download-undefined---number--undefined---number--blobdownloadoptions-) method. The example code includes a helper function called `streamToString`, which is used to read a Node.js readable stream into a string.
224
224
225
225
Add this code to the end of the `main` function:
226
226
@@ -302,7 +302,7 @@ Step through the code in your debugger and check your [Azure portal](https://por
302
302
303
303
In this quickstart, you learned how to upload, download, and list blobs using JavaScript.
304
304
305
-
For tutorials, samples, quick starts and other documentation, visit:
305
+
For tutorials, samples, quickstarts, and other documentation, visit:
306
306
307
307
> [!div class="nextstepaction"]
308
308
> [Azure for JavaScript documentation](/azure/javascript/)
Copy file name to clipboardExpand all lines: articles/storage/blobs/storage-quickstart-blobs-python.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ From the project directory:
69
69
70
70
1. Open a new text file in your code editor
71
71
1. Add `import` statements
72
-
1. Create the structure for the program, including very basic exception handling
72
+
1. Create the structure for the program, including basic exception handling
73
73
74
74
Here's the code:
75
75
@@ -222,7 +222,7 @@ with open(download_file_path, "wb") as download_file:
222
222
223
223
The following code cleans up the resources the app created by removing the entire container using the [delete_container](/python/api/azure-storage-blob/azure.storage.blob.containerclient#delete-container---kwargs-) method. You can also delete the local files, if you like.
224
224
225
-
The app pauses for user input by calling `input()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were actually created correctly, before they are deleted.
225
+
The app pauses for user input by calling `input()` before it deletes the blob, container, and local files. This is a good chance to verify that the resources were created correctly, before they are deleted.
226
226
227
227
Add this code to the end of the `try` block:
228
228
@@ -286,4 +286,4 @@ To see Blob storage sample apps, continue to:
0 commit comments