You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
936 B
42 lines
936 B
#pragma warning disable CS1591
|
|
|
|
using System.IO;
|
|
using MediaBrowser.Model.IO;
|
|
|
|
namespace MediaBrowser.MediaEncoding.BdInfo
|
|
{
|
|
public class BdInfoFileInfo : BDInfo.IO.IFileInfo
|
|
{
|
|
private FileSystemMetadata _impl = null;
|
|
|
|
public BdInfoFileInfo(FileSystemMetadata impl)
|
|
{
|
|
_impl = impl;
|
|
}
|
|
|
|
public string Name => _impl.Name;
|
|
|
|
public string FullName => _impl.FullName;
|
|
|
|
public string Extension => _impl.Extension;
|
|
|
|
public long Length => _impl.Length;
|
|
|
|
public bool IsDir => _impl.IsDirectory;
|
|
|
|
public System.IO.Stream OpenRead()
|
|
{
|
|
return new FileStream(
|
|
FullName,
|
|
FileMode.Open,
|
|
FileAccess.Read,
|
|
FileShare.Read);
|
|
}
|
|
|
|
public System.IO.StreamReader OpenText()
|
|
{
|
|
return new System.IO.StreamReader(OpenRead());
|
|
}
|
|
}
|
|
}
|