Exemplo n.º 1
0
 /// <summary>
 /// Opens a file for reading
 /// </summary>
 /// <param name="localPath">The full path to the file in non-shadow format</param>
 /// <returns>An open filestream that can be read</returns>
 public override Stream OpenRead(string localPath)
 {
     return(IO_WIN.FileOpenRead(ConvertToSnapshotPath(localPath)));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Opens a file for reading
 /// </summary>
 /// <param name="file">The full path to the file in non-snapshot format</param>
 /// <returns>An open filestream that can be read</returns>
 public override System.IO.Stream OpenRead(string file)
 {
     return(m_sysIO.FileOpenRead(file));
 }
 /// <summary>
 /// Opens a file for reading
 /// </summary>
 /// <param name="localPath">The full path to the file in non-snapshot format</param>
 /// <returns>An open filestream that can be read</returns>
 public override System.IO.Stream OpenRead(string localPath)
 {
     return(IO_WIN.FileOpenRead(localPath));
 }