Launcher.LaunchFolderPathAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
LaunchFolderPathAsync(String) |
启动文件资源管理器并显示指定文件夹的内容。 |
LaunchFolderPathAsync(String, FolderLauncherOptions) |
使用指定选项启动文件资源管理器,并显示指定文件夹的内容。 |
LaunchFolderPathAsync(String)
启动文件资源管理器并显示指定文件夹的内容。
public:
static IAsyncOperation<bool> ^ LaunchFolderPathAsync(Platform::String ^ path);
/// [Windows.Foundation.Metadata.Overload("LaunchFolderPathAsync")]
static IAsyncOperation<bool> LaunchFolderPathAsync(winrt::hstring const& path);
[Windows.Foundation.Metadata.Overload("LaunchFolderPathAsync")]
public static IAsyncOperation<bool> LaunchFolderPathAsync(string path);
function launchFolderPathAsync(path)
Public Shared Function LaunchFolderPathAsync (path As String) As IAsyncOperation(Of Boolean)
参数
- 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 将失败。
另请参阅
适用于
LaunchFolderPathAsync(String, FolderLauncherOptions)
使用指定选项启动文件资源管理器,并显示指定文件夹的内容。
public:
static IAsyncOperation<bool> ^ LaunchFolderPathAsync(Platform::String ^ path, FolderLauncherOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("LaunchFolderPathWithOptionsAsync")]
static IAsyncOperation<bool> LaunchFolderPathAsync(winrt::hstring const& path, FolderLauncherOptions const& options);
[Windows.Foundation.Metadata.Overload("LaunchFolderPathWithOptionsAsync")]
public static IAsyncOperation<bool> LaunchFolderPathAsync(string path, FolderLauncherOptions options);
function launchFolderPathAsync(path, options)
Public Shared Function LaunchFolderPathAsync (path As String, options As FolderLauncherOptions) As IAsyncOperation(Of Boolean)
参数
- 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 将失败。