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: articles/storage/files/storage-python-how-to-use-file-storage.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,16 @@
1
1
---
2
2
title: Develop for Azure Files with Python
3
3
titleSuffix: Azure Storage
4
-
description: Learn how to develop Python applications and services that use Azure Files to store file data.
4
+
description: Learn how to develop Python applications and services that use Azure Files to store file data. Create and delete files, file shares, and directories.
5
5
author: pauljewellmsft
6
-
7
6
ms.service: azure-file-storage
8
7
ms.topic: how-to
9
-
ms.date: 05/04/2023
8
+
ms.date: 05/13/2024
10
9
ms.author: pauljewell
11
10
ms.custom: devx-track-python, py-fresh-zinc
12
11
---
13
12
14
-
# Develop for Azure Files with Python
13
+
# Develop Python applications that use Azure Files
@@ -24,9 +23,10 @@ Learn the basics of using Python to develop apps or services that use Azure File
24
23
- Create file share backups by using snapshots
25
24
26
25
> [!NOTE]
27
-
> Because Azure Files may be accessed over SMB, it is possible to write simple applications that access the Azure file share using the standard Python I/O classes and functions. This article will describe how to write apps that use the Azure Storage SDK for Python, which uses the [Azure Files REST API](/rest/api/storageservices/file-service-rest-api) to talk to Azure Files.
26
+
> Because Azure Files may be accessed over SMB, it's possible to write simple applications that access the Azure file share using the standard Python I/O classes and functions. This article describes how to write apps that use the Azure Storage SDK for Python, which uses the [Azure Files REST API](/rest/api/storageservices/file-service-rest-api) to talk to Azure Files.
28
27
29
28
## Applies to
29
+
30
30
| File share type | SMB | NFS |
31
31
|-|:-:|:-:|
32
32
| Standard file shares (GPv2), LRS/ZRS |||
@@ -36,7 +36,7 @@ Learn the basics of using Python to develop apps or services that use Azure File
36
36
## Download and Install Azure Storage SDK for Python
37
37
38
38
> [!NOTE]
39
-
> If you are upgrading from the Azure Storage SDK for Python version 0.36 or earlier, uninstall the older SDK using `pip uninstall azure-storage` before installing the latest package.
39
+
> If you're upgrading from the Azure Storage SDK for Python version 0.36 or earlier, uninstall the older SDK using `pip uninstall azure-storage` before installing the latest package.
40
40
41
41
The [Azure Files client library for Python](https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/storage/azure-storage-file-share) requires Python 3.8+.
42
42
@@ -121,6 +121,7 @@ You can download a file from a share snapshot, which enables you to restore a pr
0 commit comments