Skip to content

Commit 1a7d974

Browse files
committed
Edits
1 parent 942d884 commit 1a7d974

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/storage/blobs/storage-quickstart-blobs-dotnet.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,8 @@ Add this code to the end of the `Main` method:
225225

226226
```csharp
227227
// Download the blob to a local file
228-
// Append the string "DOWNLOAD" before the .txt extension so you can see both files in MyDocuments
228+
// Append the string "DOWNLOAD" before the .txt extension
229+
// so you can compare the files in the data directory
229230
string downloadFilePath = localFilePath.Replace(".txt", "DOWNLOAD.txt");
230231

231232
Console.WriteLine("\nDownloading blob to\n\t{0}\n", downloadFilePath);
@@ -263,7 +264,7 @@ Console.WriteLine("Done");
263264

264265
## Run the code
265266

266-
This app creates a test file in your local *MyDocuments* folder and uploads it to Blob storage. The example then lists the blobs in the container and downloads the file with a new name so that you can compare the old and new files.
267+
This app creates a test file in your local *data* folder and uploads it to Blob storage. The example then lists the blobs in the container and downloads the file with a new name so that you can compare the old and new files.
267268

268269
Navigate to your application directory, then build and run the application.
269270

@@ -295,7 +296,7 @@ Deleting the local source and downloaded files...
295296
Done
296297
```
297298

298-
Before you begin the clean up process, check your *MyDocuments* folder for the two files. You can open them and observe that they are identical.
299+
Before you begin the clean up process, check your *data* folder for the two files. You can open them and observe that they are identical.
299300

300301
After you've verified the files, press the **Enter** key to delete the test files and finish the demo.
301302

0 commit comments

Comments
 (0)