concurrent file I/O

  • Thread starter Thread starter tracker77
  • Start date Start date
T

tracker77

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
)


--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.
 
Back
Top