StorageFile.GetBasicPropertiesAsync 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得目前檔案的基本屬性。
public:
virtual IAsyncOperation<BasicProperties ^> ^ GetBasicPropertiesAsync() = GetBasicPropertiesAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<BasicProperties> GetBasicPropertiesAsync();
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<BasicProperties> GetBasicPropertiesAsync();
function getBasicPropertiesAsync()
Public Function GetBasicPropertiesAsync () As IAsyncOperation(Of BasicProperties)
傳回
當這個方法成功完成時,它會以 BasicProperties 物件的形式傳回目前檔案的基本屬性。
實作
- 屬性
範例
此範例示範如何使用 storageFile.getBasicPropertiesAsync 方法來存取檔案的基本屬性。
storageFile.getBasicPropertiesAsync().then(
function (basicProperties) {
var size = basicProperties.size;
}
);
您必須在範例中 (StorageFile 物件) storageFile
代表檔案,才能使用 storageFile.getBasicPropertiesAsync 方法。
備註
如果相同 StorageItem 實例上有其他非同步作業正在進行中,這個方法會傳回E_ILLEGAL_METHOD_CALL。 請確定另一個執行緒不會同時修改 StorageItem。