Open GoogleCodeExporter opened 9 years ago
Issue 138 has been merged into this issue.
Original comment by jetcat
on 1 Mar 2013 at 11:02
this is a total hack, but gets the job done. can be cleaned up a bit, not that
hard.
Original comment by spot...@gmail.com
on 12 Jun 2013 at 8:58
Attachments:
above patch isn't perfect, but the main idea is
- FileStream stream = File.Open(file, FileMode.Open, FileAccess.ReadWrite,
FileShare.Read);
vs
+ FileStream stream = File.Open(file, FileMode.Open, FileAccess.Read,
FileShare.ReadWrite);
i.e. open read only and file share needs to be readwrite (as excel has it open
read/write and fileshare looks at previously opens as well)
Original comment by spot...@gmail.com
on 12 Jun 2013 at 9:01
slight fix to the diff, to remove a bad change that wasn't fixed and make it be
totally orthogonal to original code.
Original comment by spot...@gmail.com
on 12 Jun 2013 at 9:03
Attachments:
Original issue reported on code.google.com by
shallowm...@gmail.com
on 14 Aug 2009 at 12:23