Public Interface IVirtualFile ''' ''' Contains only FILE NAME, without FULL PATH. ''' ReadOnly Property Filename As String ''' ''' Returns path to a file. This isn't windows file path in all cases. For Simulate 365 it's just path from Dashboard root. ''' 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