Read file that is used by another process

.net, c#, file

Solution

If the process holds an exclusive lock on the file then no. If the process holds a shared lock, you can read it.

Problem

Is there ability to read file that is used by another process? Thanks.

Original source

Related problems