共用方式為


StorageFile.GetFileFromPathAsync(String) 方法

定義

取得 StorageFile 物件,表示位於指定路徑的檔案。

public:
 static IAsyncOperation<StorageFile ^> ^ GetFileFromPathAsync(Platform::String ^ path);
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<StorageFile> GetFileFromPathAsync(winrt::hstring const& path);
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<StorageFile> GetFileFromPathAsync(string path);
function getFileFromPathAsync(path)
Public Shared Function GetFileFromPathAsync (path As String) As IAsyncOperation(Of StorageFile)

參數

path
String

Platform::String

winrt::hstring

要取得 StorageFile 表示之檔案的路徑。

如果您的路徑使用斜線,請確定您使用反斜線 (\) 。 此方法不接受正斜線 (/) 。

傳回

當這個方法完成時,它會以 StorageFile的形式傳回檔案。

屬性

例外狀況

指定的檔案不存在。 檢查 路徑的值。

您沒有存取指定檔案的許可權。 如需詳細資訊,請參閱 檔案存取權限

路徑不能是相對路徑或 URI。 檢查 路徑的值。

適用於

另請參閱