Property: AutoRemove for DataPlugin
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: AutoRemove for DataPlugin
Property: AutoRemove for DataPlugin
Returns the AutoRemove object for working with ZIP archives.
Set oAutoRemove = Object.AutoRemove
Object | DataPlugin Object with this property |
oAutoRemove | AutoRemove 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