Tagged Questions
1
vote
1answer
5k views
Java - open existing file or create one if doesn't exist using IO streams
I was following instructions from a Java website (http://java.sun.com/docs/books/tutorial/essential/io/file.html#createStream) on creating or writing a file using an IO stream. However, the code it ...
0
votes
3answers
306 views
Why does .NET not clear errors internally?
I am running the following scenerio:
SafeFileHandle handle = Win32API.CreateFile((deviceName + "\\" + pipeName),
DesiredAccess.GENERIC_WRITE | DesiredAccess.GENERIC_READ,
...
0
votes
3answers
255 views
saving file to network
I have a file that's about 7 MB that saves to my local share in a matter of seconds. However, saving that file to a network location takes minutes. I'm wondering what I can do to speed this up. ...