Skip to main content

Class LocalFileSystemConnector

A concrete implementation of the Workspace.XBR.Xperiflow.Etl.IFileConnector interface that reads and writes files from the local file system.

Namespace: Workspace.XBR.Xperiflow.Etl

Assembly: Xperiflow.dll

Declaration
public class LocalFileSystemConnector : IFileConnector

Implements: Workspace.XBR.Xperiflow.Etl.IFileConnector

Methods​

Read()​

Reads the local file content as a FileStream with FileMode.Open and FileAccess.Read.

Declaration
public Stream Read()
Returns​

System.IO.Stream

A FileStream representing the file content

Write(Stream)​

Writes the specified Stream to the local file with FileMode.Create and FileAccess.Write.

Declaration
public void Write(Stream stream)
Parameters​
TypeNameDescription
System.IO.StreamstreamThe Stream to write to the file

Implements​

Inherited Members​

  • System.Object.Equals(System.Object)
  • System.Object.Equals(System.Object,System.Object)
  • System.Object.GetHashCode
  • System.Object.GetType
  • System.Object.MemberwiseClone
  • System.Object.ReferenceEquals(System.Object,System.Object)
  • System.Object.ToString

Was this page helpful?