DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: AutoRemove for DataPlugin

Property: AutoRemove for DataPlugin

Returns the AutoRemove object for working with ZIP archives.

Set oAutoRemove = Object.AutoRemove
ObjectDataPlugin
Object with this property
oAutoRemoveAutoRemove
Returned object

The following example creates a temporary folder and unzips the ZIP archive FileName in this folder. Then the example imports the data of the first file with the load method described in the ATFX DataPlugin:

Sub ReadStore(FileName)
  Dim TempFolder
  TempFolder = AutoRemove.CreateFolder()

  Dim FileList
  FileList = Unzip(FileName, TempFolder)

  Call Root.ImportStore(TempFolder & FileList(0), "ATFX")
End Sub
In This Section
Was this information helpful?