2020-02-04 00:49:27 +00:00
#pragma warning disable CS1591
2019-01-06 20:50:43 +00:00
using System ;
2018-12-27 23:27:57 +00:00
using System.Collections.Generic ;
namespace MediaBrowser.Model.IO
{
/// <summary>
2020-02-04 00:49:27 +00:00
/// Interface IFileSystem.
2018-12-27 23:27:57 +00:00
/// </summary>
public interface IFileSystem
{
/// <summary>
/// Determines whether the specified filename is shortcut.
/// </summary>
/// <param name="filename">The filename.</param>
/// <returns><c>true</c> if the specified filename is shortcut; otherwise, <c>false</c>.</returns>
bool IsShortcut ( string filename ) ;
/// <summary>
/// Resolves the shortcut.
/// </summary>
/// <param name="filename">The filename.</param>
/// <returns>System.String.</returns>
2021-05-20 19:28:18 +00:00
string? ResolveShortcut ( string filename ) ;
2018-12-27 23:27:57 +00:00
/// <summary>
/// Creates the shortcut.
/// </summary>
/// <param name="shortcutPath">The shortcut path.</param>
/// <param name="target">The target.</param>
void CreateShortcut ( string shortcutPath , string target ) ;
string MakeAbsolutePath ( string folderPath , string filePath ) ;
2024-09-07 17:23:48 +00:00
/// <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 ) ;
2018-12-27 23:27:57 +00:00
/// <summary>
2019-01-26 22:24:28 +00:00
/// Returns a <see cref="FileSystemMetadata" /> object for the specified file or directory path.
2018-12-27 23:27:57 +00:00
/// </summary>
/// <param name="path">A path to a file or directory.</param>
2019-01-26 22:24:28 +00:00
/// <returns>A <see cref="FileSystemMetadata" /> object.</returns>
/// <remarks>If the specified path points to a directory, the returned <see cref="FileSystemMetadata" /> object's
/// <see cref="FileSystemMetadata.IsDirectory" /> property will be set to true and all other properties will reflect the properties of the directory.</remarks>
2018-12-27 23:27:57 +00:00
FileSystemMetadata GetFileSystemInfo ( string path ) ;
/// <summary>
2019-01-26 22:24:28 +00:00
/// Returns a <see cref="FileSystemMetadata" /> object for the specified file path.
2018-12-27 23:27:57 +00:00
/// </summary>
/// <param name="path">A path to a file.</param>
2019-01-26 22:24:28 +00:00
/// <returns>A <see cref="FileSystemMetadata" /> object.</returns>
/// <remarks><para>If the specified path points to a directory, the returned <see cref="FileSystemMetadata" /> object's
/// <see cref="FileSystemMetadata.IsDirectory" /> property and the <see cref="FileSystemMetadata.Exists" /> property will both be set to false.</para>
2021-08-28 22:32:50 +00:00
/// <para>For automatic handling of files <b>and</b> directories, use <see cref="GetFileSystemInfo(string)" />.</para></remarks>
2018-12-27 23:27:57 +00:00
FileSystemMetadata GetFileInfo ( string path ) ;
/// <summary>
2019-01-26 22:24:28 +00:00
/// Returns a <see cref="FileSystemMetadata" /> object for the specified directory path.
2018-12-27 23:27:57 +00:00
/// </summary>
/// <param name="path">A path to a directory.</param>
2019-01-26 22:24:28 +00:00
/// <returns>A <see cref="FileSystemMetadata" /> object.</returns>
/// <remarks><para>If the specified path points to a file, the returned <see cref="FileSystemMetadata" /> object's
/// <see cref="FileSystemMetadata.IsDirectory" /> property will be set to true and the <see cref="FileSystemMetadata.Exists" /> property will be set to false.</para>
2021-08-28 22:32:50 +00:00
/// <para>For automatic handling of files <b>and</b> directories, use <see cref="GetFileSystemInfo(string)" />.</para></remarks>
2018-12-27 23:27:57 +00:00
FileSystemMetadata GetDirectoryInfo ( string path ) ;
/// <summary>
/// Gets the valid filename.
/// </summary>
/// <param name="filename">The filename.</param>
/// <returns>System.String.</returns>
string GetValidFilename ( string filename ) ;
/// <summary>
/// Gets the creation time UTC.
/// </summary>
/// <param name="info">The information.</param>
/// <returns>DateTime.</returns>
DateTime GetCreationTimeUtc ( FileSystemMetadata info ) ;
/// <summary>
/// Gets the creation time UTC.
/// </summary>
/// <param name="path">The path.</param>
/// <returns>DateTime.</returns>
DateTime GetCreationTimeUtc ( string path ) ;
/// <summary>
/// Gets the last write time UTC.
/// </summary>
/// <param name="info">The information.</param>
/// <returns>DateTime.</returns>
DateTime GetLastWriteTimeUtc ( FileSystemMetadata info ) ;
/// <summary>
/// Gets the last write time UTC.
/// </summary>
/// <param name="path">The path.</param>
/// <returns>DateTime.</returns>
DateTime GetLastWriteTimeUtc ( string path ) ;
/// <summary>
/// Swaps the files.
/// </summary>
/// <param name="file1">The file1.</param>
/// <param name="file2">The file2.</param>
void SwapFiles ( string file1 , string file2 ) ;
bool AreEqual ( string path1 , string path2 ) ;
/// <summary>
/// Determines whether [contains sub path] [the specified parent path].
/// </summary>
/// <param name="parentPath">The parent path.</param>
/// <param name="path">The path.</param>
/// <returns><c>true</c> if [contains sub path] [the specified parent path]; otherwise, <c>false</c>.</returns>
bool ContainsSubPath ( string parentPath , string path ) ;
/// <summary>
/// Gets the file name without extension.
/// </summary>
/// <param name="info">The information.</param>
/// <returns>System.String.</returns>
string GetFileNameWithoutExtension ( FileSystemMetadata info ) ;
/// <summary>
/// Determines whether [is path file] [the specified path].
/// </summary>
/// <param name="path">The path.</param>
/// <returns><c>true</c> if [is path file] [the specified path]; otherwise, <c>false</c>.</returns>
bool IsPathFile ( string path ) ;
/// <summary>
/// Deletes the file.
/// </summary>
/// <param name="path">The path.</param>
void DeleteFile ( string path ) ;
/// <summary>
/// Gets the directories.
/// </summary>
/// <param name="path">The path.</param>
2021-02-20 22:13:04 +00:00
/// <param name="recursive">If set to <c>true</c> also searches in subdirectiories.</param>
/// <returns>All found directories.</returns>
2018-12-27 23:27:57 +00:00
IEnumerable < FileSystemMetadata > GetDirectories ( string path , bool recursive = false ) ;
/// <summary>
/// Gets the files.
/// </summary>
2021-02-20 22:13:04 +00:00
/// <param name="path">The path in which to search.</param>
/// <param name="recursive">If set to <c>true</c> also searches in subdirectiories.</param>
/// <returns>All found files.</returns>
2018-12-27 23:27:57 +00:00
IEnumerable < FileSystemMetadata > GetFiles ( string path , bool recursive = false ) ;
2021-05-20 19:28:18 +00:00
IEnumerable < FileSystemMetadata > GetFiles ( string path , IReadOnlyList < string > ? extensions , bool enableCaseSensitiveExtensions , bool recursive ) ;
2018-12-27 23:27:57 +00:00
/// <summary>
/// Gets the file system entries.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="recursive">if set to <c>true</c> [recursive].</param>
/// <returns>IEnumerable<FileSystemMetadata>.</returns>
IEnumerable < FileSystemMetadata > GetFileSystemEntries ( string path , bool recursive = false ) ;
/// <summary>
/// Gets the directory paths.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="recursive">if set to <c>true</c> [recursive].</param>
/// <returns>IEnumerable<System.String>.</returns>
IEnumerable < string > GetDirectoryPaths ( string path , bool recursive = false ) ;
/// <summary>
/// Gets the file paths.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="recursive">if set to <c>true</c> [recursive].</param>
/// <returns>IEnumerable<System.String>.</returns>
IEnumerable < string > GetFilePaths ( string path , bool recursive = false ) ;
2019-01-26 22:24:28 +00:00
2021-05-20 19:28:18 +00:00
IEnumerable < string > GetFilePaths ( string path , string [ ] ? extensions , bool enableCaseSensitiveExtensions , bool recursive ) ;
2018-12-27 23:27:57 +00:00
/// <summary>
/// Gets the file system entry paths.
/// </summary>
/// <param name="path">The path.</param>
/// <param name="recursive">if set to <c>true</c> [recursive].</param>
/// <returns>IEnumerable<System.String>.</returns>
IEnumerable < string > GetFileSystemEntryPaths ( string path , bool recursive = false ) ;
void SetHidden ( string path , bool isHidden ) ;
2020-08-31 20:20:19 +00:00
2018-12-27 23:27:57 +00:00
void SetAttributes ( string path , bool isHidden , bool readOnly ) ;
2020-08-31 20:20:19 +00:00
2022-01-22 14:40:05 +00:00
IEnumerable < FileSystemMetadata > GetDrives ( ) ;
2022-02-28 23:16:25 +00:00
/// <summary>
2022-03-03 02:55:44 +00:00
/// Determines whether the directory exists.
2022-02-28 23:16:25 +00:00
/// </summary>
/// <param name="path">The path.</param>
/// <returns>Whether the path exists.</returns>
2022-03-03 02:55:44 +00:00
bool DirectoryExists ( string path ) ;
/// <summary>
/// Determines whether the file exists.
/// </summary>
/// <param name="path">The path.</param>
/// <returns>Whether the path exists.</returns>
bool FileExists ( string path ) ;
2018-12-27 23:27:57 +00:00
}
}