Autodesk Vault ProfessionalVault API

FindFilesByDatesPathsAndChecksums Method

Autodesk.Connectivity.WebServicesDocumentService

Returns a set of Files based on lists of dates, paths and checksums.

Required Permissions

FileRead

Syntax

public File[] FindFilesByDatesPathsAndChecksums(
   System.string[] filePaths,
   System.int[] checksums,
   System.DateTime[] createDates
)
Public Function FindFilesByDatesPathsAndChecksums( _
   ByVal filePaths() As System.String, _
   ByVal checksums() As System.Integer, _
   ByVal createDates() As System.Date _
) As File()

Parameters

NameDescription
filePathsAn array of Vault paths.
checksumsAn array of checksums
createDatesAn array of create dates.

Return Value

An array of File objects corresponding to the information in the input arrays. If a match is not found, the File masterId will be -1 for that entry.

Remarks

Input arrays must be the same size.

See Also