IntegrationFileClientIsFileExistsAsync 方法 |
检查当前的文件是否在服务器端存在,列表中需要存在文件的名称,映射的文件也需要存在。
Check whether the current file exists on the server side, the name of the file must exist in the list, and the mapped file must also exist.
命名空间:
HslCommunication.Enthernet
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public Task<OperateResult<bool>> IsFileExistsAsync(
string fileName,
string factory,
string group,
string id
)
Public Function IsFileExistsAsync (
fileName As String,
factory As String,
group As String,
id As String
) As Task(Of OperateResult(Of Boolean))
public:
Task<OperateResult<bool>^>^ IsFileExistsAsync(
String^ fileName,
String^ factory,
String^ group,
String^ id
)
member IsFileExistsAsync :
fileName : string *
factory : string *
group : string *
id : string -> Task<OperateResult<bool>>
参数
- fileName
- 类型:SystemString
当前的文件名称,举例123.txt - factory
- 类型:SystemString
第一级分类信息 - group
- 类型:SystemString
第二级分类信息 - id
- 类型:SystemString
第三级分类信息
返回值
类型:
TaskOperateResultBoolean是否存在,存在返回true, 否则,返回false
参见