jellyfin/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/FileInputStream.cs

21 lines
502 B
C#
Raw Normal View History

2017-04-02 00:36:06 +00:00
using System.IO;
namespace SharpCifs.Util.Sharpen
{
public class FileInputStream : InputStream
2017-06-21 06:46:57 +00:00
{
public FileInputStream(FilePath file) : this(file.GetPath())
{
}
2017-04-02 00:36:06 +00:00
2017-06-21 06:46:57 +00:00
public FileInputStream(string file)
{
if (!File.Exists(file))
{
throw new FileNotFoundException("File not found", file);
}
Wrapped = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
}
}
2017-04-02 00:36:06 +00:00
}