共用方式為


Launcher.LaunchFolderPathAsync 方法

定義

多載

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

要開啟之資料夾的 filepath。

傳回

運算的結果。

屬性

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

要開啟之資料夾的 filepath。

options
FolderLauncherOptions

指定檔案總管填滿螢幕空間數量的選項,以及要選取在指定資料夾中的專案清單。

傳回

運算的結果。

屬性

Windows 需求

裝置系列
Windows 10, version 1809 (已於 10.0.17763.0 引進)
API contract
Windows.Foundation.UniversalApiContract (已於 v7.0 引進)

備註

您必須從 ASTA 執行緒內呼叫此 API, (也稱為 UI 執行緒) 。 此 API 不需要呼叫應用程式才能存取正在啟動的資料夾。 如果路徑未指向資料夾,或使用者無法存取該資料夾,此 API 將會失敗。

另請參閱

適用於