Indicates if an archive file is stored in memory.
[C#]
public bool InMemory { get; set; }
[VB.NET]
Public Property InMemory As Boolean
Description
Indicates whether the current archive file is stored in memory (RAM).
Set this property to True when you want to create a new or open an existing archive file in memory. If you set it to False file will be opened or created on disk, with the name defined by FileName property.
Setting InMemory to False when archive file is opened will cause writing the content of the archive file to disk. Set this property to True when you need to load content of the archvie file into memory.
Note: It is not recommended to set InMemory to True with large archive files. FlexCompress.NET includes transaction system that optimizes the speed of archives updating.