-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileRetriever.cs
More file actions
75 lines (62 loc) · 1.7 KB
/
FileRetriever.cs
File metadata and controls
75 lines (62 loc) · 1.7 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright © Microsoft Corporation. All Rights Reserved.
// This code released under the terms of the
// Apache License, Version 2.0 (http://opensource.org/licenses/Apache-2.0)
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Microsoft.Synchronization;
using Microsoft.Synchronization.Files;
namespace FileSystemDurabilityPlugin
{
class FileRetriever : IFileDataRetriever
{
FileData _fileData;
Stream _fileStream;
string _relativePath;
internal FileRetriever(FileData fileData, string relativePath, Stream fileStream)
{
if (fileData == null)
{
throw new ApplicationException("Application Bug");
}
if (relativePath == null)
{
relativePath = "";
}
_fileData = fileData;
_fileStream = fileStream;
_relativePath = relativePath;
}
#region IFileDataRetriever Members
public string AbsoluteSourceFilePath
{
get
{
throw new NotImplementedException("Absolute Path Not Supported");
}
}
public FileData FileData
{
get
{
return _fileData;
}
}
public System.IO.Stream FileStream
{
get
{
return _fileStream;
}
}
public string RelativeDirectoryPath
{
get
{
return _relativePath;
}
}
#endregion
}
}