Class SgaEntry
- Namespace
- OpenCompote.SGA
- Assembly
- OpenCompote.dll
Represents an item in the SGA archive like file or folder.
public abstract class SgaEntry
- Inheritance
-
SgaEntry
- Derived
- Inherited Members
Properties
Drive
Gets the SGA drive that the entry belongs to.
public SgaDrive? Drive { get; }
Property Value
Name
Gets or sets the name of the entry in the SGA archive.
public string Name { get; set; }
Property Value
Parent
Gets the parent drive of this entry.
public SgaFolder? Parent { get; }
Property Value
Path
Gets the relative path of the entry in the SGA drive.
public string Path { get; }
Property Value
Methods
Delete()
Deletes the entry from the archive.
public void Delete()
Exceptions
- NotSupportedException
The SGA archive for this entry was open in readonly mode.
- ObjectDisposedException
The SGA archive for this entry has been disposed.
ThrowIfDeleted()
protected void ThrowIfDeleted()