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-files-faq.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Get answers to frequently asked questions (FAQ) about Azure Files a
4
4
author: khdownie
5
5
ms.service: azure-file-storage
6
6
ms.custom: linux-related-content
7
-
ms.date: 06/24/2024
7
+
ms.date: 03/28/2025
8
8
ms.author: kendownie
9
9
ms.topic: faq
10
10
---
@@ -129,19 +129,19 @@ ms.topic: faq
129
129
* <aid="alternate-data-streams"></a>
130
130
**Does Azure Files support alternate data streams?**
131
131
132
-
Azure Files doesn't support [alternate data streams](https://learn.microsoft.com/openspecs/windows_protocols/ms-fscc/e2b19412-a925-4360-b009-86e3b8a020c8). Transferring data via SMB will throw a **file already exists** message if an alternate data stream is found. You can check alternate streams by using the following PowerShell command:
132
+
Azure Files doesn't support [alternate data streams](/openspecs/windows_protocols/ms-fscc/e2b19412-a925-4360-b009-86e3b8a020c8). Transferring data via SMB will throw a **file already exists** message if an alternate data stream is found. You can check alternate streams by using the following PowerShell command:
133
133
134
134
```powershell
135
-
get-item <file path+name> -Stream *
135
+
get-item <file path+name> -Stream *
136
136
```
137
137
138
138
If more than one stream is shown, you can remove them using the following PowerShell command:
139
139
140
140
```powershell
141
-
Remove-Item <file path+name> -Stream *`
141
+
remove-Item <file path+name> -Stream *
142
142
```
143
143
144
-
Please note that alternate data streams are preserved on-premises when Azure File Sync is used.
144
+
Alternate data streams are preserved on-premises when Azure File Sync is used.
0 commit comments