75 lines
2.3 KiB
C#
75 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using BDInfo.IO;
|
|
using MediaBrowser.Model.IO;
|
|
|
|
namespace MediaBrowser.MediaEncoding.BdInfo
|
|
{
|
|
class BdInfoDirectoryInfo : BDInfo.IO.IDirectoryInfo
|
|
{
|
|
IFileSystem _fileSystem = null;
|
|
|
|
FileSystemMetadata _impl = null;
|
|
|
|
public string Name => _impl.Name;
|
|
|
|
public string FullName => _impl.FullName;
|
|
|
|
public IDirectoryInfo Parent
|
|
{
|
|
get
|
|
{
|
|
var parentFolder = System.IO.Path.GetDirectoryName(_impl.FullName);
|
|
if (parentFolder != null)
|
|
{
|
|
return new BdInfoDirectoryInfo(_fileSystem, parentFolder);
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public BdInfoDirectoryInfo(IFileSystem fileSystem, string path)
|
|
{
|
|
_fileSystem = fileSystem;
|
|
_impl = _fileSystem.GetDirectoryInfo(path);
|
|
}
|
|
|
|
private BdInfoDirectoryInfo(IFileSystem fileSystem, FileSystemMetadata impl)
|
|
{
|
|
_fileSystem = fileSystem;
|
|
_impl = impl;
|
|
}
|
|
|
|
public IDirectoryInfo[] GetDirectories()
|
|
{
|
|
return Array.ConvertAll(_fileSystem.GetDirectories(_impl.FullName).ToArray(),
|
|
x => new BdInfoDirectoryInfo(_fileSystem, x));
|
|
}
|
|
|
|
public IFileInfo[] GetFiles()
|
|
{
|
|
return Array.ConvertAll(_fileSystem.GetFiles(_impl.FullName).ToArray(),
|
|
x => new BdInfoFileInfo(_fileSystem, x));
|
|
}
|
|
|
|
public IFileInfo[] GetFiles(string searchPattern)
|
|
{
|
|
return Array.ConvertAll(_fileSystem.GetFiles(_impl.FullName, new[] { searchPattern }, false, false).ToArray(),
|
|
x => new BdInfoFileInfo(_fileSystem, x));
|
|
}
|
|
|
|
public IFileInfo[] GetFiles(string searchPattern, System.IO.SearchOption searchOption)
|
|
{
|
|
return Array.ConvertAll(_fileSystem.GetFiles(_impl.FullName, new[] { searchPattern }, false,
|
|
searchOption.HasFlag(System.IO.SearchOption.AllDirectories)).ToArray(),
|
|
x => new BdInfoFileInfo(_fileSystem, x));
|
|
}
|
|
|
|
public static IDirectoryInfo FromFileSystemPath(Model.IO.IFileSystem fs, string path)
|
|
{
|
|
return new BdInfoDirectoryInfo(fs, path);
|
|
}
|
|
}
|
|
}
|