1
vote
2answers
47 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
129 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 …
0
votes
2answers
42 views
IOException while changing from File to BufferedImage
Error: Unhandled exception type IOException.
File imgLoc = new File("player.png");
BufferedImage img = ImageIO.read(imgLoc);
How do I get a bufferedImage from a file location?
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: …
1
vote
3answers
82 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
142 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 …
0
votes
1answer
143 views
Error creating javax.microedition.rms.RecordStore in NetBeans 6.0
I'm trying to write an application with J2ME that uses javax.microedition.rms.RecordStore to store persistent data. I'm developing this project in NetBeans 6.0 and J2ME 2.2 on Gentoo. When I try to …
0
votes
3answers
240 views
IOException while reading from InputStream
I'm running into a strange problem while reading from an InputStream on the Android platform. I'm not sure if this is an Android specific issue, or something I'm doing wrong in general.
The only …
7
votes
6answers
470 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 …
0
votes
6answers
226 views
How to detect System.IO.IOException cause by existing file?
I want to create and open a file but only if it doesnt exist. I dont want to use a File.Exists because a thread by switch after it creating a file with the same name.
How do i check if the exception …
3
votes
8answers
480 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 …
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, …
0
votes
2answers
242 views
threaded serial port IOException when writing
Hi, I'm trying to write a small application that simply reads data from a socket, extracts some information (two integers) from the data and sends the extracted information off on a serial port.
The …
3
votes
2answers
181 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"
…
0
votes
3answers
207 views
Getting an IOException on multiple writes to a file.
Hey,
I have implemented a csv file builder that takes in an xml document applies a xsl transform to it and appends it to a file.
public class CsvBatchPrinter : BaseBatchPrinter
{
public …
