Tagged Questions

The exception thrown to indicate that the code has failed to open the file denoted by a specified pathname.

learn more… | top users | synonyms

6
votes
1answer
6k views

Reading file from assets directory throws FileNotFoundException

I'm trying to read in a text file of a bunch of words that I want to use for a word game I am writing. This list is stored in the assets directory and is a txt file. But, whenever I attempt to open ...
5
votes
3answers
12k views

Detect underlying cause for java.io.FileNotFoundException

FileNotFoundException is thrown on all sorts of occasions - not necessarily only when the file name is invalid, but also when e. g. permissions do not allow a file to be created or read: ...
4
votes
1answer
31 views

Why different exceptions for FileWriter and FileOutputStream?

The docs of Java 7 for FileWriter and FileOutputStream shows that the constructor of FileWriter throws IOException, while the constructor of FileOutputStream throws FileNotFoundException. The reason ...
4
votes
1answer
152 views

FileNotFoundException when Deserializing XML

We've recently starting seeing FileNotFoundException's being thrown sporadically while deserializing XML. The message is that the temporary assembly used to map from the XML to code can't be found. ...
4
votes
5answers
2k views

StreamReader complains that file does not exist, but it does

I have an application that is localized for use across Europe. I have a menu option that loads a file from disk. This operation works fine on my dev machine but does not work on the virtual machine ...
3
votes
3answers
42 views

Guarding against exceptions (preventative maintenance) when working with network / file system calls?

I have a friend who is in disagreement with me on this, and I'm just looking to get some feedback as to who is right and wrong in this situation. FileInfo file = ...; if (file.Exists) { //File ...
3
votes
2answers
360 views

FileOutputStream failed with FileNotFoundException even though the File apparently, exists, is writeable and has permissions

Although I am relatively new to Android, I have experience in Java and C based programming and I am currently using Eclipse, with the usual toolset, for development. I have read most of the posts ...
3
votes
2answers
177 views

GetExportedTypes() FileNotFoundException: Assembly couldn't be found

My task: Find all Forms (WindowsForm or WPF, doesn't matter) in a dll or exe file and return that list. In theory that works (meaning: if I've an assembly with a WPF or WindowsForm my code manages to ...
3
votes
1answer
703 views

Deploying NetFwTypeLib to manage the Windows Firewall

My Windows service needs to create/remove certain rules from the Windows firewall. For this I interface with NetFwTypeLib in <windows>\system32\hnetcfg.dll via COM. It works great on my 64-bit ...
3
votes
2answers
7k views

java.io.FileNotFoundException: (Access is denied)

I am trying to read the files inside a folder, but when i run the program it throw this exception. I tried with some other folders also. It throws the same exception. Please help me. Exception in ...
3
votes
4answers
2k views

FileNotFoundException when file exists with all permissions

I am trying to read a file and the error i get is java.io.FileNotFoundException: ...
3
votes
3answers
6k views

“System.IO.FileNotFoundException: Could not load file or assembly” when the assembly does in fact exist

As part of our migration from .net 1.1 to .net 3.5, we had to change out a few vender DLLs. One of them is giving us trouble in only 1 spot out of the 4 spots we use it at: The trouble spot is a ...
3
votes
2answers
2k views

VB.NET shell command throwing a file not found exception!

I am trying to convert one of my unix text files to a dos text file. I am using the following command: Shell(string.format("unix2dos {0}", sFileCompletePath)) I've already added the unix2dos ...
3
votes
4answers
3k views

FileNotFoundException thrown when the file does exists

I'm facing this strange problem. I'm trying to read a file that is located in another machine as a shared resource: \\remote-machine\dir\MyFileHere.txt When I run a standalone application ( a 16 ...
2
votes
1answer
86 views

How to check if file exists in Metro?

Is there any other way of checking whether a file exists or not in Metro? try { StorageFile file = await ApplicationData.Current.LocalFolder.GetFileAsync("Test.xml"); //no exception means ...
2
votes
4answers
89 views

fileNotFoundException but file exists

in my FileInputStream I get a FileNotFoundException, but I know he file exists, I can download it with the webbrowser. It also works if I copy the Link from the exception to webbrowser. Rights are on ...
2
votes
0answers
120 views

Android FileInputStream FileNotFoundException even though permissions in place, file exists, storage is mounted, can read etc

I'm a beginning developer for Android and running into the following problem when trying to access an XML file on the SD card. To start, I performed the following checks: - Permission to read/write ...
2
votes
1answer
83 views

Error handling with “Getting all types that implement an interface with C# 3.5”

I have a method in class library that scans all loaded assemblies for types that implement a certain interface a la Getting all types that implement an interface with C# 3.5. var type = ...
2
votes
2answers
138 views

ProcessStartInfo run exe in PATH envirionment variable

I'm trying to run an exe using ProcessStartInfo. The problem is I only want to specify the exe name, and add the executable path to the PATH environment variable in Windows. When I try to run my ...
2
votes
3answers
80 views

Any Java debugging tips for finding the cause of “Too Many Files Open”

I'm developing in a linux environment and the system is intended to run continuously over a long period of time. After an overnight test we see the FileNotFoundException with a message of "Too Many ...
2
votes
1answer
58 views

Opening Arabic-named files in Android

I am getting a FileNotFoundException when trying to open Arabic-named files in Android even though the files are there. Is it possible to open Arabic-named files on Android? Thanks in advance.
2
votes
2answers
249 views

Downloading on Android - FileNotFoundException but file exists

I tried to download a file from a server in Android but all I get is a FileNotFoundException. My download method works fine for all files I give it, but not on this one specific url. The url it is ...
2
votes
2answers
1k views

Could not load file or assembly … from SatelliteResourceMismatchRule

We've recently updated our C# projects from .NET 3.5 to 4.0. We run Gendarme on our local machines and on CC.NET. After updating all of our projects, Gendarme is is getting this error for one of our ...
2
votes
3answers
515 views

java.io.FileNotFoundException, file not being found

I just wanted to read a file line by line. This was meant to be simple, but i just can't get it right! String fileName = "C:/Users/Diogo/Desktop/Krs_Grafo/Graph.txt"; FileReader file = new ...
2
votes
3answers
1k views

FileNotFoundException when calling webservice

Hello I got past my initial problem. I'm a total android noob, this is my first app. I'm testing this on the Android emulator. I try to connect to a .NET webservice at ...
2
votes
2answers
209 views

Throw exception when file not found, in mathematica

I have a function that processes an image whose path is given by the user. I'm a bit new to Mathematica, and I can't find much on its large documentation. How can I throw an exception when ...
2
votes
7answers
1k views

“Could not load file or assembly 'XXX.YYY' or one of its dependencies. The system cannot find the file specified.”

I have a .net visual studio solution with a number of projects (class libraries and a web application). I did some refractoring which moved files between projects, created new projects, deleted ones ...
2
votes
2answers
2k views

Android FileNotFound Exception - Cannot getInputStream from image URL that does not have file format

The title is pretty self explanatory. the following code...: URL imageUrl = new URL(url); try { HttpURLConnection conn= (HttpURLConnection)imageUrl.openConnection(); ...
2
votes
2answers
427 views

System.IO.FileNotFoundException

This one is a long story: i have recently built a win32 application in Visual Studio that uses DirectX and I sent it to some friends to verify that it works on other machines. They all had .NET ...
2
votes
2answers
415 views

Excel VBA File not Found

During development of some Excel vba code about every other iteration where I go in and add some code then save the file, the next time I open the thing (it is automatically set to run the code on ...
2
votes
1answer
1k views

FileNotFoundException when reading .xml file to parse

I'm writing a program in Java where I read in data from an XML file and parse it. The file is imported into a folder named "Resources" in the src directory of my project. I'm using Eclipse. When I run ...
2
votes
2answers
180 views

Parsing XML Truncates File Path

I am receiving a FileNotFoundException with the following code: File dataFile = new File("\\xx.xxx.xx.xxx\PATH\TO\FILE.xml"); if(dataFile.isFile()) { DocumentBuilderFactory dbf = ...
2
votes
7answers
1k views

How to avoid FileNotFound exception when running Java on Linux because of case sensitiveness?

My web application runs on Windows. I would like to run my app on Linux also. I seem to have overcome most of the problems such as path separator, etc. Real problem now is I get ...
2
votes
4answers
596 views

Need help moving nUnit tests into separate project

Everything works fine when the unit tests class is part of the main project (TestAccount). Every article I've read about unit testing recommends putting the tests in a separate project, so I... ...
1
vote
2answers
85 views

File Not Found Exception using File Input Stream

I'm attempting to load a file from my hard drive to a file input stream using the code below. package com.filefinder1; import java.io.File; import java.io.FileInputStream; import ...
1
vote
0answers
38 views

geronimo deploy cli file not found

Hello I want to deploy an .ear remotely with the deploy.sh of geronimo. But after the upload i get: http://localhost:8080/remote-deploy/upload 07:50:22,889 ERROR [DeployTool] Error: ...
1
vote
1answer
91 views

XNA File Not Found issue - settings are specified correct (i.e., this should be working)

I have the following Game1 class, which I altered a little bit (hehe, and may actually be the reason why this isn't working properly...): Game1 Class public class Game1 : ...
1
vote
1answer
59 views

FileNotFoundException while accessing a file from JSP

I have a Java program which uses a lot of text files. The program runs perfectly fine when run as a standalone Java application. But it won't work when I call the same method from a JSP page. It says ...
1
vote
0answers
96 views

FileLoadException and strong assembly signing

I have an assembly which is referencing couple of other assemblies. Everything was working fine and then I went ahead and strongly signed all of the assemblies. The assembly contains entity designer ...
1
vote
4answers
89 views

find file location in java.io.FileNotFoundException

I have this Java application and I'm using an external Jar and one of the functions is throwing a java.io.FileNotFoundException. I have the file that it's looking for but I have no idea where I'm ...
1
vote
2answers
108 views

Getting a FileNotFoundException on lua51.dll when using LuaInterface on C# 4.0 but it's right there

I've been using LuaInterface and Lua 5.1 in several C# applications that required scripting, most notably a few games, an IRC bot and a full IRC client that I've recently decided to resume working on. ...
1
vote
1answer
108 views

Android external write permitted but file not found exception

In the emulator I'm trying to write to the file: /mnt/sdcard/Android/data/com.Me.MyApp/files/myFile.txt I have set external write permissions in the Manifest, but I keep receiving a file not found ...
1
vote
1answer
364 views

“File Not Found” exception while creating sharepoint subsite collection using central admin

I have my own site template, while creating new site collection using the particular template, I am getting the "File Not Found" exception, event i didnt have any information in my log file. how to ...
1
vote
5answers
270 views

Android: How to access a file in the SD Card

I'm trying to access the image on the SD card using below code but I"m getting File not found exception. Can someone tell me a correct way to acess the file??? new File("/mnt/sdcard/splah2.jpg")
1
vote
3answers
427 views

Error Could not load file or assembly 'Interop.ActiveDs'

I'm doing some active directory work with c# and I'm getting this error on my page System.IO.FileNotFoundException: Could not load file or assembly 'Interop.ActiveDs, Version=1.0.0.0, ...
1
vote
1answer
124 views

Getting URL for FileDoesNot Exist with MVC3 and .Net error handling?

Using the following error handling in Application_Error(): protected void Application_Error() { Exception exception = Server.GetLastError(); Response.Clear(); ...
1
vote
2answers
68 views

File not found when executable launched from another application

In my application, after the user logs in I set a few picturebox/button/etc images and do some scaling on them and whatnot. I use relative paths for example: @".\Images\SomeImage.png" It works fine ...
1
vote
1answer
118 views

addProvider bouncycastle filenotfoundexception

I have been able to run decryption and encryption locally using the bouncycastle jars. I have generated keys that I want to put the public key a client (Java and Android) and the private key in a web ...
1
vote
2answers
173 views

FileNotFoundException even when the file is there

public StormAnalysis(){ try { fScanner = new Scanner(new File("tracks1949to2010_epa.txt")); while(fScanner.hasNextLine()){ ...
1
vote
8answers
217 views

java exception handling in constructor

honestly I'm not very experienced with exception handling, because often for my laziness I tend to not handle exceptions. So here's a very basic question. I would like to know what's the cleanest way ...

1 2 3 4