7
votes
6answers
473 views
Does close ever throw an IOException?
After providing some answers here, and reading some comments, it would seem that, in practice IOException is never thrown on close for file I/O.
Are there any cases in which calling close on a …
4
votes
6answers
372 views
how to best wait for a filelock to release
I have an application where i sometimes need to read from file being written to and as a result being locked. As I have understood from other questions i should catch the IOException and retry until i …
3
votes
2answers
187 views
IOException for drive full or out of space
I am looking for a list of platform-specific (JRE-specific) of IOException messages indicating disk is full or out of space.
So far I have:
Windows: "There is not enough space on the disk"
…
3
votes
8answers
484 views
NUnit [TearDown] fails — what process is accessing my files?
Hi All -
Final Edit: I found a solution to the problem (at the bottom of the question).
I've got an Nunit problem that's causing me grief. Edit: actually it looks more like a SQLite problem, but I'm …
3
votes
5answers
557 views
Java IOException only when running new Java 1.6 - someone please
Hi,
After an upgrade to XP and Java 1.6 one of our intranet apps is experiencing a problem when running a java applet in the browser. The java applet is a document editor and accepts a parameter to …
2
votes
2answers
468 views
java.io.IOException: Invalid argument
Hi
I have a web application running in cluster mode with a load balancer.
It consists in two tomcats (T1, and T2) addressing only one DB.
T2 is nfs mounted to T1. This is the only dofference between …
2
votes
5answers
817 views
Microsoft.NET and the Multicore CPU of Doom
The question proper
Has anyone experienced this exception on a single core machine?
The I/O operation has been aborted because of either a thread exit or an application request.
Some context
…
1
vote
2answers
50 views
Deleting a window’s background image WPF
I'm having a problem in WPF where a window doesn't release it's file-lock on the background image file after closing, before another part of the application tries to write to the image.
So as an …
1
vote
2answers
140 views
IOException - Access Denied Using FileOutputStream
I get the following IOException :
java.io.IOException: Access is denied
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:850)
at …
1
vote
3answers
86 views
Wait for file to be freed by process
How do I wait for the File to be Free so that ss.Save() can overwrite it with a new one. If I run this twice close together(ish) I get a generic GDI+ error.
///<summary>
/// Grabs a …
1
vote
3answers
146 views
IOException on DataGridView writing to text file C#
Good morning all,
I'm having a few problems with a method in my C# code that should enable a DataGridView to be saved to a .txt file.
The code is as below:
private void saveToTxt_Btn_Click(object …
1
vote
4answers
1k views
System.IO.IOException: file used by another process
Dear all,
I've been working in this small piece of code that seems trivial but still i cannot really see where is the problem. My functions does a pretty simple thing. Opens a file, copy its contents, …
1
vote
2answers
249 views
java.io.IOException: Job failed! when running a sample app on my osx with hadoop-0.19.1
bash-3.2$ echo $JAVA_HOME
/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
bash-3.2$ bin/hadoop dfs -copyFromLocal conf /user/yokkom/input2
bash-3.2$ bin/hadoop jar hadoop-*-examples.jar …
1
vote
8answers
291 views
Forcing FileNotFoundException
I'm writing a test for a piece of code that has an IOException catch in it that I'm trying to cover. The try/catch looks something like this:
try {
oos = new ObjectOutputStream(new …
1
vote
4answers
1k views
Can you explain why DirectoryInfo.GetFiles produces this IOException?
I have a WinForms client-server app running on a Novell network that produces the following error when connecting to the lone Windows 2003 Server on the network:
TYPE: System.IO.IOException
MSG: …
