Autodesk Vault ProfessionalVault API

FindFilesByPathsAndChecksums Method

Autodesk.Connectivity.WebServicesDocumentService

Returns a set of Files based on a list of paths and checksums.

Required Permissions

FileRead

Syntax

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

Parameters

NameDescription
filePathsAn array of Vault paths. Both input arrays must be the same size.
checksumsAn array of checksums. Both input arrays must be the same size.

Return Value

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

See Also