SQL Object
 
Syntax
 
SQL.FetchFromArchive(FileName)
 
Description
Downloads a file from the digital archive and places this file in the original folder. If the folder no longer exists, the folder structure is also restored.
 
Parameter
Description
FileName
Path and file name of the document being searched. Wildcards are not allowed.
 
See Also
Example
Sub Main()
 
    Dim strFile As String
 
    strFile = InputBox$("Enter file name:")
 
    If ExistsInArchive(strFile) Then
        Debug.Print FetchFromArchive(strFile)
    End If
 
End Sub