Skip to content

Commit 8a0dfc8

Browse files
committed
update links to moved files
1 parent 79eacb6 commit 8a0dfc8

5 files changed

Lines changed: 18 additions & 18 deletions

uwp/files/access-the-sd-card.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To access files on the SD card, typically you have to specify the following thin
5050

5151
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.
5252

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).
5454

5555
## Accessing files on the SD card
5656

uwp/files/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ You use the APIs in the [Windows.Storage](/uwp/api/Windows.Storage), [Windows.St
1313

1414
| Topic | Description |
1515
|-------|--------------|
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. |
2020
| [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. |
2121
| [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. |
2222
| [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.|
2727
| [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. |
3030

3131
## Related samples
3232

uwp/files/quickstart-accessing-homegroup-content.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Access content stored in the user's HomeGroup folder, including pictures, music,
2525

2626
- **App capability declarations**
2727

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).
2929

3030
> [!NOTE]
3131
> 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,
3636

3737
- **Understand file and folder queries**
3838

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).
4040

4141
## Open the file picker at the HomeGroup
4242

uwp/files/quickstart-save-a-file-with-a-picker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Use [**FileSavePicker**](/uwp/api/Windows.Storage.Pickers.FileSavePicker) to let
3232

3333
- **Access permissions to the location**
3434

35-
See [File access permissions](file-access-permissions.md).
35+
See [File access permissions](/windows/apps/develop/files/file-access-permissions).
3636

3737
## FileSavePicker: step-by-step
3838

@@ -97,7 +97,7 @@ Use a [**FileSavePicker**](/uwp/api/Windows.Storage.Pickers.FileSavePicker) so t
9797
}
9898
```
9999

100-
The example checks that the file is valid and writes its own file name into it. Also see [Creating, writing, and reading a file](quickstart-reading-and-writing-files.md).
100+
The example checks that the file is valid and writes its own file name into it. Also see [Creating, writing, and reading a file](/windows/apps/develop/files/create-read-write-files).
101101

102102
> [!TIP]
103103
> You should always check the saved file to make sure it is valid before you perform any other processing. Then, you can save content to the file as appropriate for 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.
110110

111111
[Integrating with file picker contracts](/previous-versions/windows/apps/hh465192(v=win.10))
112112

113-
[Creating, writing, and reading a file](quickstart-reading-and-writing-files.md)
113+
[Creating, writing, and reading a file](/windows/apps/develop/files/create-read-write-files)

uwp/files/quickstart-using-file-and-folder-pickers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Access files and folders by letting the user interact with a picker. You can use
3333

3434
- **Access permissions to the location**
3535

36-
See [File access permissions](file-access-permissions.md).
36+
See [File access permissions](/windows/apps/develop/files/file-access-permissions).
3737

3838
## File picker UI
3939

@@ -167,7 +167,7 @@ else
167167
```
168168

169169
> [!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).
171171
172172
## See also
173173

0 commit comments

Comments
 (0)