Installation
Prerequisites
- Unreal Engine 5.8.0 or later
- Visual Studio 2022 (for Windows) or Xcode (for Mac) with C++ toolchain
Method 1: From Unreal Engine Marketplace
- Open the Epic Games Launcher
- Navigate to the Unreal Engine Marketplace
- Search for "Easy File Manager" or use the direct link
- Click "Add to Project" and select your project
- The plugin will be installed to your project's
Plugins/EFM/folder
Method 2: Manual Installation
- Clone or download the plugin repository
- Copy the
EFMfolder to your project'sPlugins/directory:YourProject/└── Plugins/└── EFM/├── EFM.uplugin├── Source/└── ... - If the
Plugins/folder doesn't exist, create it
Method 3: Engine-Level Installation
To make EFM available to all projects:
- Navigate to your UE5 engine installation's
Engine/Plugins/Marketplace/folder - Place the
EFMfolder there - The plugin will now appear in the Plugins Browser for all projects
Enabling the Plugin
- Open your project in Unreal Editor
- Go to Edit > Plugins
- Search for "Easy File Manager" or "EFM"
- Ensure the plugin is Enabled
- Restart the editor if prompted
Verifying Installation
After restarting, open the Output Log (Window > Developer Tools > Output Log) and look for:
LogEFM: EFM plugin loaded successfully
You can also run the built-in diagnostics from any Blueprint:
- Create a new Blueprint
- In the Event Graph, add the node Run EFM Diagnostics
- Execute it and check the Output Log for pass/fail results
Troubleshooting
Plugin not showing in the Plugins list
- Ensure the plugin folder is named exactly
EFM - Check that
EFM.upluginexists atPlugins/EFM/EFM.uplugin - Verify the
EngineVersioninEFM.upluginmatches your UE version
Compilation errors
- Ensure you have the C++ toolchain installed for your platform
- Right-click your
.uprojectfile and select "Generate Visual Studio project files" - Open the solution and build in Development Editor configuration
Module not found at runtime
- Check that the plugin is enabled in Edit > Plugins
- Verify the
LoadingPhaseis set toPreDefaultinEFM.uplugin