你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Get-AzStorageFile

列出路径的目录和文件。

语法

Get-AzStorageFile
   [-ShareName] <String>
   [[-Path] <String>]
   [-ExcludeExtendedInfo]
   [-DisAllowTrailingDot]
   [-Context <IStorageContext>]
   [-ServerTimeoutPerRequest <Int32>]
   [-ClientTimeoutPerRequest <Int32>]
   [-DefaultProfile <IAzureContextContainer>]
   [-ConcurrentTaskCount <Int32>]
   [<CommonParameters>]
Get-AzStorageFile
   [-Share] <CloudFileShare>
   [-ShareClient <ShareClient>]
   [[-Path] <String>]
   [-ExcludeExtendedInfo]
   [-Context <IStorageContext>]
   [-ServerTimeoutPerRequest <Int32>]
   [-ClientTimeoutPerRequest <Int32>]
   [-DefaultProfile <IAzureContextContainer>]
   [-ConcurrentTaskCount <Int32>]
   [<CommonParameters>]
Get-AzStorageFile
   [-Directory] <CloudFileDirectory>
   [-ShareDirectoryClient <ShareDirectoryClient>]
   [[-Path] <String>]
   [-ExcludeExtendedInfo]
   [-Context <IStorageContext>]
   [-ServerTimeoutPerRequest <Int32>]
   [-ClientTimeoutPerRequest <Int32>]
   [-DefaultProfile <IAzureContextContainer>]
   [-ConcurrentTaskCount <Int32>]
   [<CommonParameters>]

说明

Get-AzStorageFile cmdlet 列出了指定的共享或目录的目录和文件。 指定 Path 参数以获取指定路径中的目录或文件的实例。 此 cmdlet 返回 AzureStorageFileAzureStorageDirectory 对象。 可以使用 IsDirectory 属性区分文件夹和文件。

示例

示例 1:列出共享中的目录

Get-AzStorageFile -ShareName "ContosoShare06" | Where-Object {$_.GetType().Name -eq "AzureStorageFileDirectory"}

此命令仅列出共享 ContosoShare06 中的目录。 它首先检索文件和目录,使用管道运算符将它们 传递给 where 运算符,然后丢弃类型不是“AzureStorageFileDirectory”的任何对象。

示例 2:列出文件目录

Get-AzStorageFile -ShareName "ContosoShare06" -Path "ContosoWorkingFolder" | Get-AzStorageFile

此命令在 Share ContosoShare06 下的目录 ContosoWorkingFolder 中列出文件和文件夹。 它首先获取目录实例,然后将其管道传递给 Get-AzStorageFile cmdlet 以列出目录。

参数

-ClientTimeoutPerRequest

指定一个服务请求的客户端超时间隔(以秒为单位)。 如果上一次调用在指定的时间间隔内失败,则此 cmdlet 将重试请求。 如果此 cmdlet 在间隔过前未收到成功的响应,则此 cmdlet 将返回错误。

类型:Nullable<T>[Int32]
别名:ClientTimeoutPerRequestInSeconds
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ConcurrentTaskCount

指定最大并发网络调用数。 可以使用此参数通过指定并发网络调用的最大数目来限制本地 CPU 和带宽使用量的并发性。 指定的值是绝对计数,不乘以核心计数。 此参数可以帮助缓解低带宽环境中的网络连接问题,例如每秒 100 千比特。 默认值为 10。

类型:Nullable<T>[Int32]
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-Context

指定Azure 存储上下文。 若要获取存储上下文,请使用 New-AzStorageContext cmdlet。

类型:IStorageContext
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-DefaultProfile

用于与 Azure 通信的凭据、帐户、租户和订阅。

类型:IAzureContextContainer
别名:AzureRmContext, AzureCredential
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-Directory

将文件夹指定为 CloudFileDirectory 对象。 此 cmdlet 获取此参数指定的文件夹。 若要获取目录,请使用 New-AzStorageDirectory cmdlet。 还可以使用 Get-AzStorageFile cmdlet 获取目录。

类型:CloudFileDirectory
别名:CloudFileDirectory
Position:0
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-DisAllowTrailingDot

禁止尾随点 (.) 后缀目录和文件名。

类型:SwitchParameter
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ExcludeExtendedInfo

不包括扩展文件信息,如时间戳、ETag、属性、list 文件和 Directory 中的 permissionKey。

类型:SwitchParameter
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-Path

指定文件夹的路径。 如果省略 Path 参数, Get-AzStorageFile 会列出指定文件共享或目录中的目录和文件。 如果包含 Path 参数, Get-AzStorageFile 将返回指定路径中的目录或文件的实例。

类型:String
Position:1
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-ServerTimeoutPerRequest

指定请求的服务端超时间隔(以秒为单位)。 如果服务处理请求之前指定的间隔已过,则存储服务将返回错误。

类型:Nullable<T>[Int32]
别名:ServerTimeoutPerRequestInSeconds
Position:Named
默认值:None
必需:False
接受管道输入:False
接受通配符:False

-Share

指定 CloudFileShare 对象。 此 cmdlet 从此参数指定的文件共享中获取文件或目录。 若要获取 CloudFileShare 对象,请使用 Get-AzStorageShare cmdlet。 此对象包含存储上下文。 如果指定此参数,请不要指定 Context 参数。

类型:CloudFileShare
别名:CloudFileShare
Position:0
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-ShareClient

ShareClient 对象指示将列出文件/目录的共享。

类型:ShareClient
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-ShareDirectoryClient

ShareDirectoryClient 对象指示将列出文件/目录的基文件夹。

类型:ShareDirectoryClient
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

-ShareName

指定文件共享的名称。 此 cmdlet 从此参数指定的文件共享中获取文件或目录。

类型:String
Position:0
默认值:None
必需:True
接受管道输入:False
接受通配符:False

输入

CloudFileShare

CloudFileDirectory

IStorageContext

输出

AzureStorageFile