Autodesk Vault ProfessionalVault API

FindFilesByFoldersNamesAndChecksums Method

Autodesk.Connectivity.WebServicesDocumentService

Returns a set of Files based on lists of folders, file names and checksums.

Required Permissions

FileRead

Syntax

public File[] FindFilesByFoldersNamesAndChecksums(
   System.long[] folderIds,
   System.string[] filenames,
   System.int[] checksums
)
Public Function FindFilesByFoldersNamesAndChecksums( _
   ByVal folderIds() As System.Long, _
   ByVal filenames() As System.String, _
   ByVal checksums() As System.Integer _
) As File()

Parameters

NameDescription
folderIdsAn array of folders Ids.
filenamesAn array of filenames.
checksumsAn array of checksums.

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.

See Also