Launcher.LaunchFolderPathForUserAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
LaunchFolderPathForUserAsync(User, String) |
启动文件资源管理器并显示指定文件夹的内容。 |
LaunchFolderPathForUserAsync(User, String, FolderLauncherOptions) |
使用指定选项启动文件资源管理器,并显示指定文件夹的内容。 |
LaunchFolderPathForUserAsync(User, String)
启动文件资源管理器并显示指定文件夹的内容。
public:
static IAsyncOperation<bool> ^ LaunchFolderPathForUserAsync(User ^ user, Platform::String ^ path);
/// [Windows.Foundation.Metadata.Overload("LaunchFolderPathForUserAsync")]
static IAsyncOperation<bool> LaunchFolderPathForUserAsync(User const& user, winrt::hstring const& path);
[Windows.Foundation.Metadata.Overload("LaunchFolderPathForUserAsync")]
public static IAsyncOperation<bool> LaunchFolderPathForUserAsync(User user, string path);
function launchFolderPathForUserAsync(user, path)
Public Shared Function LaunchFolderPathForUserAsync (user As User, path As String) As IAsyncOperation(Of Boolean)
参数
- user
- User
要传递给已启动应用的用户上下文。
- path
-
String
Platform::String
winrt::hstring
要打开的文件夹的文件路径。
返回
操作的结果。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1809 (在 10.0.17763.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v7.0 中引入)
|
注解
必须从 ASTA 线程内部调用此 API, (也称为 UI 线程) 。 此 API 不要求调用应用有权访问正在启动的文件夹。 如果路径未指向某个文件夹,或者用户无权访问该文件夹,则此 API 将失败。
另请参阅
适用于
LaunchFolderPathForUserAsync(User, String, FolderLauncherOptions)
使用指定选项启动文件资源管理器,并显示指定文件夹的内容。
public:
static IAsyncOperation<bool> ^ LaunchFolderPathForUserAsync(User ^ user, Platform::String ^ path, FolderLauncherOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("LaunchFolderPathWithOptionsForUserAsync")]
static IAsyncOperation<bool> LaunchFolderPathForUserAsync(User const& user, winrt::hstring const& path, FolderLauncherOptions const& options);
[Windows.Foundation.Metadata.Overload("LaunchFolderPathWithOptionsForUserAsync")]
public static IAsyncOperation<bool> LaunchFolderPathForUserAsync(User user, string path, FolderLauncherOptions options);
function launchFolderPathForUserAsync(user, path, options)
Public Shared Function LaunchFolderPathForUserAsync (user As User, path As String, options As FolderLauncherOptions) As IAsyncOperation(Of Boolean)
参数
- user
- User
要传递给已启动应用的用户上下文。
- path
-
String
Platform::String
winrt::hstring
要打开的文件夹的文件路径。
- options
- FolderLauncherOptions
指定文件资源管理器填充的屏幕空间量以及指定文件夹中要选择的项目列表的选项。
返回
操作的结果。
- 属性
Windows 要求
设备系列 |
Windows 10, version 1809 (在 10.0.17763.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v7.0 中引入)
|
注解
必须从 ASTA 线程内部调用此 API, (也称为 UI 线程) 。 此 API 不要求调用应用有权访问正在启动的文件夹。 如果路径未指向某个文件夹,或者用户无权访问该文件夹,则此 API 将失败。