Is it possible to configure .NET file i/o as pipes (i.e. concurrent
read and writes to the same file)?
What about .NET application getting input from file concurrently being
appended to by an out-of-process EXE?
Use the FileStream constructor overload:
public FileStream (
string path,
FileMode mode,
FileAccess access,
FileShare share
)

Signature
HTH,
Kevin Spencer
Microsoft MVP
Professional Numbskull
Show me your certification without works,
and I'll show my certification
*by* my works.
> Is it possible to configure .NET file i/o as pipes (i.e. concurrent
> read and writes to the same file)?
> What about .NET application getting input from file concurrently being
> appended to by an out-of-process EXE?