aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/BdInfo/BdInfoFileInfo.cs
blob: a6ff4f76783b1d8d8efbc6d4634cf9a5fcab6bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.IO;
using MediaBrowser.Model.IO;

namespace MediaBrowser.MediaEncoding.BdInfo
{
    class BdInfoFileInfo : BDInfo.IO.IFileInfo
    {
        FileSystemMetadata _impl = null;

        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 BdInfoFileInfo(FileSystemMetadata impl)
        {
            _impl = impl;
        }

        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());
        }
    }
}