Enhance Trickplay (#11883)

This commit is contained in:
Tim Eisele 2024-09-07 19:23:48 +02:00 committed by GitHub
parent 675a8a9ec9
commit c56dbc1c44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 422 additions and 53 deletions

View file

@ -33,6 +33,13 @@ namespace MediaBrowser.Model.IO
string MakeAbsolutePath(string folderPath, string filePath);
/// <summary>
/// Moves a directory to a new location.
/// </summary>
/// <param name="source">Source directory.</param>
/// <param name="destination">Destination directory.</param>
void MoveDirectory(string source, string destination);
/// <summary>
/// Returns a <see cref="FileSystemMetadata" /> object for the specified file or directory path.
/// </summary>