diff options
| author | Tim Eisele <Ghost_of_Stone@web.de> | 2025-03-23 17:05:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-23 10:05:13 -0600 |
| commit | 8db6a39e92acfd76689e77c71b00ac96e60c515b (patch) | |
| tree | 195a9ee6d854cae2f3283655023466b6ed9a5c8d /MediaBrowser.Controller | |
| parent | 8b6aec7ce54df949b2940daa7f0c6b7d3201bda5 (diff) | |
Remove all DB data on item removal, delete internal trickplay files (#13753)
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/IO/IPathManager.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/IO/IPathManager.cs b/MediaBrowser.Controller/IO/IPathManager.cs new file mode 100644 index 000000000..036889810 --- /dev/null +++ b/MediaBrowser.Controller/IO/IPathManager.cs @@ -0,0 +1,17 @@ +using MediaBrowser.Controller.Entities; + +namespace MediaBrowser.Controller.IO; + +/// <summary> +/// Interface ITrickplayManager. +/// </summary> +public interface IPathManager +{ + /// <summary> + /// Gets the path to the trickplay image base folder. + /// </summary> + /// <param name="item">The item.</param> + /// <param name="saveWithMedia">Whether or not the tile should be saved next to the media file.</param> + /// <returns>The absolute path.</returns> + public string GetTrickplayDirectory(BaseItem item, bool saveWithMedia = false); +} |
