IntegrationFileClientDownloadPathFileNamesAsync 方法 |
获取指定路径下的所有的文档
Get all documents in the specified path
命名空间:
HslCommunication.Enthernet
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public Task<OperateResult<GroupFileItem[]>> DownloadPathFileNamesAsync(
string factory,
string group,
string id
)
Public Function DownloadPathFileNamesAsync (
factory As String,
group As String,
id As String
) As Task(Of OperateResult(Of GroupFileItem()))
public:
Task<OperateResult<array<GroupFileItem^>^>^>^ DownloadPathFileNamesAsync(
String^ factory,
String^ group,
String^ id
)
member DownloadPathFileNamesAsync :
factory : string *
group : string *
id : string -> Task<OperateResult<GroupFileItem[]>>
参数
- factory
- 类型:SystemString
第一大类 - group
- 类型:SystemString
第二大类 - id
- 类型:SystemString
第三大类
返回值
类型:
TaskOperateResultGroupFileItem是否成功的结果对象
备注
用于分类的参数
factory,
group,
id中间不需要的可以为空,对应的是服务器上的路径系统。
警告: |
---|
失败的原因大多数来自于网络的接收异常。
|
示例 private void FillNodeFilesByFactoryGroupId( TreeNode root, OperateResult<GroupFileItem[]> read )
{
root.Nodes.Clear( );
root.ExpandAll( );
if (read.IsSuccess)
{
foreach (var item in read.Content)
{
TreeNode node = new TreeNode( item.FileName );
node.Tag = item;
root.Nodes.Add( node );
}
}
else
{
MessageBox.Show( read.ToMessageShowString( ) );
}
}
参见