File size: 694 Bytes
b1b3bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
Public Interface IVirtualFile

    ''' <summary>
    ''' Contains only FILE NAME, without FULL PATH.
    ''' </summary>
    ReadOnly Property Filename As String

    ''' <summary>
    ''' Returns path to a file. This isn't windows file path in all cases. For Simulate 365 it's just path from Dashboard root.
    ''' </summary>
    ReadOnly Property FullPath As String

    ReadOnly Property ParentUniqueIdentifier As String

    Function GetExtension() As String

    Function ReadAllText() As String

    Function OpenRead() As System.IO.Stream

    Sub Write(stream As System.IO.Stream)
    Sub Write(localFile As String)

    Sub Delete()

    Function Exists() As Boolean

End Interface