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: uwp/files/access-the-sd-card.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ To access files on the SD card, typically you have to specify the following thin
50
50
51
51
Use the preceding method also to access media files on the SD card without referencing a known folder like **KnownFolders.MusicLibrary**, or to access media files that are stored outside of the media library folders.
52
52
53
-
To access media files stored in the media libraries—Music, Photos, or Videos—by using known folders, you only have to specify the associated capability in the app manifest file—**musicLibrary**, **picturesLibrary**, or **videoLibrary**. You do not have to specify the **removableStorage** capability. For more info, see [Files and folders in the Music, Pictures, and Videos libraries](quickstart-managing-folders-in-the-music-pictures-and-videos-libraries.md).
53
+
To access media files stored in the media libraries—Music, Photos, or Videos—by using known folders, you only have to specify the associated capability in the app manifest file—**musicLibrary**, **picturesLibrary**, or **videoLibrary**. You do not have to specify the **removableStorage** capability. For more info, see [Files and folders in the Music, Pictures, and Videos libraries](/windows/apps/develop/files/music-pictures-videos-libraries).
Copy file name to clipboardExpand all lines: uwp/files/index.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,20 +13,20 @@ You use the APIs in the [Windows.Storage](/uwp/api/Windows.Storage), [Windows.St
13
13
14
14
| Topic | Description |
15
15
|-------|--------------|
16
-
|[Enumerate and query files and folders](quickstart-listing-files-and-folders.md)| Access files and folders in either a folder, library, device, or network location. You can also query the files and folders in a location by constructing file and folder queries. |
17
-
|[Create, write, and read a file](quickstart-reading-and-writing-files.md)| Read and write a file using a [StorageFile](/uwp/api/Windows.Storage.StorageFile) object. |
18
-
|[Best practices for writing to files](best-practices-for-writing-to-files.md)| Learn best practices for using various file writing methods of the [FileIO](/uwp/api/windows.storage.fileio) and [PathIO](/uwp/api/windows.storage.pathio) classes. |
19
-
|[Get file properties](quickstart-getting-file-properties.md)| Get properties—top-level, basic, and extended—for a file represented by a [StorageFile](/uwp/api/Windows.Storage.StorageFile) object. |
16
+
|[Enumerate and query files and folders](/windows/apps/develop/files/list-files-folders)| Access files and folders in either a folder, library, device, or network location. You can also query the files and folders in a location by constructing file and folder queries. |
17
+
|[Create, write, and read a file](/windows/apps/develop/files/create-read-write-files)| Read and write a file using a [StorageFile](/uwp/api/Windows.Storage.StorageFile) object. |
18
+
|[Best practices for writing to files](/windows/apps/develop/files/best-practices-writing-files)| Learn best practices for using various file writing methods of the [FileIO](/uwp/api/windows.storage.fileio) and [PathIO](/uwp/api/windows.storage.pathio) classes. |
19
+
|[Get file properties](/windows/apps/develop/files/file-properties)| Get properties—top-level, basic, and extended—for a file represented by a [StorageFile](/uwp/api/Windows.Storage.StorageFile) object. |
20
20
|[Open files and folders with a picker](quickstart-using-file-and-folder-pickers.md)| Access files and folders by letting the user interact with a picker. You can use the [FolderPicker](/uwp/api/Windows.Storage.Pickers.FolderPicker) to gain access to a folder. |
21
21
|[Save a file with a picker](quickstart-save-a-file-with-a-picker.md)| Use [FileSavePicker](/uwp/api/Windows.Storage.Pickers.FileSavePicker) to let users specify the name and location where they want your app to save a file. |
22
22
|[Accessing HomeGroup content](quickstart-accessing-homegroup-content.md)| Access content stored in the user's HomeGroup folder, including pictures, music, and videos. |
23
-
|[Determining availability of Microsoft OneDrive files](quickstart-determining-availability-of-microsoft-onedrive-files.md)| Determine if a Microsoft OneDrive file is available using the [StorageFile.IsAvailable](/uwp/api/windows.storage.storagefile.isavailable) property. |
24
-
|[Files and folders in the Music, Pictures, and Videos libraries](quickstart-managing-folders-in-the-music-pictures-and-videos-libraries.md)| Add existing folders of music, pictures, or videos to the corresponding libraries. You can also remove folders from libraries, get the list of folders in a library, and discover stored photos, music, and videos. |
25
-
|[Track recently used files and folders](how-to-track-recently-used-files-and-folders.md)| Track files that your user accesses frequently by adding them to your app's most recently used list (MRU). The platform manages the MRU for you by sorting items based on when they were last accessed, and by removing the oldest item when the list's 25-item limit is reached. All apps have their own MRU. |
26
-
|[Track file system changes in the background](change-tracking-filesystem.md)| Track changes to the file system, even when the app isn't running.|
23
+
|[Determining availability of Microsoft OneDrive files](/windows/apps/develop/files/determine-availability-microsoft-onedrive-files)| Determine if a Microsoft OneDrive file is available using the [StorageFile.IsAvailable](/uwp/api/windows.storage.storagefile.isavailable) property. |
24
+
|[Files and folders in the Music, Pictures, and Videos libraries](/windows/apps/develop/files/music-pictures-videos-libraries)| Add existing folders of music, pictures, or videos to the corresponding libraries. You can also remove folders from libraries, get the list of folders in a library, and discover stored photos, music, and videos. |
25
+
|[Track recently used files and folders](/windows/apps/develop/files/track-recently-used-files-folders)| Track files that your user accesses frequently by adding them to your app's most recently used list (MRU). The platform manages the MRU for you by sorting items based on when they were last accessed, and by removing the oldest item when the list's 25-item limit is reached. All apps have their own MRU. |
26
+
|[Track file system changes in the background](/windows/apps/develop/files/change-tracking-filesystem)| Track changes to the file system, even when the app isn't running.|
27
27
|[Access the SD card](access-the-sd-card.md)| You can store and access non-essential data on an optional microSD card, especially on low-cost mobile devices that have limited internal storage. |
28
-
|[File access permissions](file-access-permissions.md)| Apps can access certain file system locations by default. Apps can also access additional locations through the file picker, or by declaring capabilities. |
29
-
|[Fast access to file properties in UWP](fast-file-properties.md)| Efficiently gather a list of files and their properties from a library to use in a UWP app. |
28
+
|[File access permissions](/windows/apps/develop/files/file-access-permissions)| Apps can access certain file system locations by default. Apps can also access additional locations through the file picker, or by declaring capabilities. |
29
+
|[Fast access to file properties in UWP](/windows/apps/develop/files/fast-file-properties)| Efficiently gather a list of files and their properties from a library to use in a UWP app. |
Copy file name to clipboardExpand all lines: uwp/files/quickstart-accessing-homegroup-content.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Access content stored in the user's HomeGroup folder, including pictures, music,
25
25
26
26
-**App capability declarations**
27
27
28
-
To access HomeGroup content, the user's machine must have a HomeGroup set up and your app must have at least one of the following capabilities: **picturesLibrary**, **musicLibrary**, or **videosLibrary**. When your app accesses the HomeGroup folder, it will see only the libraries that correspond to the capabilities declared in your app's manifest. To learn more, see [File access permissions](file-access-permissions.md).
28
+
To access HomeGroup content, the user's machine must have a HomeGroup set up and your app must have at least one of the following capabilities: **picturesLibrary**, **musicLibrary**, or **videosLibrary**. When your app accesses the HomeGroup folder, it will see only the libraries that correspond to the capabilities declared in your app's manifest. To learn more, see [File access permissions](/windows/apps/develop/files/file-access-permissions).
29
29
30
30
> [!NOTE]
31
31
> Content in the Documents library of a HomeGroup isn't visible to your app regardless of the capabilities declared in your app's manifest and regardless of the user's sharing settings.
@@ -36,7 +36,7 @@ Access content stored in the user's HomeGroup folder, including pictures, music,
36
36
37
37
-**Understand file and folder queries**
38
38
39
-
You can use queries to enumerate files and folders in the HomeGroup. To learn about file and folder queries, see [Enumerating and querying files and folders](quickstart-listing-files-and-folders.md).
39
+
You can use queries to enumerate files and folders in the HomeGroup. To learn about file and folder queries, see [Enumerating and querying files and folders](/windows/apps/develop/files/list-files-folders).
>Youshouldalwayscheckthesavedfiletomakesureitisvalidbeforeyouperformanyotherprocessing. Then, youcansavecontenttothefileasappropriatefor your app, and provide appropriate behavior if the picked file is not valid.
@@ -110,4 +110,4 @@ The example checks that the file is valid and writes its own file name into it.
Copy file name to clipboardExpand all lines: uwp/files/quickstart-using-file-and-folder-pickers.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Access files and folders by letting the user interact with a picker. You can use
33
33
34
34
-**Access permissions to the location**
35
35
36
-
See [File access permissions](file-access-permissions.md).
36
+
See [File access permissions](/windows/apps/develop/files/file-access-permissions).
37
37
38
38
## File picker UI
39
39
@@ -167,7 +167,7 @@ else
167
167
```
168
168
169
169
> [!TIP]
170
-
> Whenever your app accesses a file or folder through a picker, add it to your app's [**FutureAccessList**](/uwp/api/windows.storage.accesscache.storageapplicationpermissions.futureaccesslist) or [**MostRecentlyUsedList**](/uwp/api/windows.storage.accesscache.storageapplicationpermissions.mostrecentlyusedlist) to keep track of it. You can learn more about using these lists in [How to track recently-used files and folders](how-to-track-recently-used-files-and-folders.md).
170
+
> Whenever your app accesses a file or folder through a picker, add it to your app's [**FutureAccessList**](/uwp/api/windows.storage.accesscache.storageapplicationpermissions.futureaccesslist) or [**MostRecentlyUsedList**](/uwp/api/windows.storage.accesscache.storageapplicationpermissions.mostrecentlyusedlist) to keep track of it. You can learn more about using these lists in [How to track recently-used files and folders](/windows/apps/develop/files/track-recently-used-files-folders).
0 commit comments