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.getBasicPropertiesAsync 方法,必须在示例) (一个代表文件的 StorageFile 对象。storageFile
注解
如果同一 StorageItem 实例上正在进行其他异步操作,此方法将返回E_ILLEGAL_METHOD_CALL。 确保另一个线程不会同时修改 StorageItem。