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.
| ||||
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 | ||||