aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/BdInfo/BdInfoFileInfo.cs
blob: 0a8af8e9c864f94b4f25281515da67dcd9048879 (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
39
40
41
#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());
        }
    }
}