EFMCore
EFMCore is the heart of the EFM plugin. It provides two main classes:
- UEFMBPLibrary - Static Blueprint functions for file/directory operations, path utilities, search, hashing, clipboard, and diagnostics
- UEFMFile - A UObject representing a file on disk, with methods for reading, writing, and manipulating file data
Enums
EImageConversionResult
Result of converting a file to a Texture2D.
| Value | Description |
|---|---|
Success | Conversion succeeded |
UnknownFormat | File format is not supported |
FileNotFound | File does not exist |
UnknownError | An unexpected error occurred |
EFileHashType
Hash algorithm to use for file verification.
| Value | Description |
|---|---|
MD5 | MD5 hash (128-bit) |
SHA1 | SHA-1 hash (160-bit) |
SHA256 | SHA-256 hash (256-bit) |