I have a C# Visual Studio 2008 Form which needs to read the contents of the relative file ‘character/attacks.txt’ File.Exists() returns false when I run it, even though I’m positive my directories are sorted. Code:
try
{
System.IO.StreamReader file = new System.IO.StreamReader("character/attacks.txt");
int counter = 0;
int numberOfLines = 0;
string line;
while ((line = file.ReadLine()) != null) { numberOfLines++; }
string[] attacks = new string[numberOfLines];
while ((line = file.ReadLine()) != null) { attacks[counter] = line; counter++; }
file.Close();
print(attacks.ToString());
}
catch (Exception ex)
{
print("ERROR"); print("Did you edit any files?"); print(ex.ToString());
}
Exception Error:
System.IO.FileNotFoundException: Could not find file 'D:\Users\Andrey\Desktop\Turn\character\attacks.txt'.
File name: 'D:\Users\Andrey\Desktop\Turn\character\attacks.txt'
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options)
at System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize)
at System.IO.StreamReader..ctor(String path)
at TurnByTurn.Form1.button1_Click(Object sender, EventArgs e) in D:\Users\Andrey\Desktop\C#\TurnByTurn\TurnByTurn\Form1.cs:line 52
I’m porting my code from Python and never had any troubles with this. Thanks in advance!
That’s very strange. The computer seems firmly convinced that there is no
attacks.txtfile in theD:\Users\Andrey\Desktop\Turn\character\directory, but you say that it definitely exists. One of you must be wrong, and I’ve learned over the years that computers are right more often than I am.Are you sure that your file actually has a
.txtextension, not a.txt.somethingelseextension? If you have the display of file extensions turned off in the Windows shell, you might be missing this extra file extension. The computer isn’t missing it internally, though, and it’s seeing that as a totally different file than the one you requested. That’s the same problem this guy had.To re-configure Windows Explorer:
The other answers to this question do make some good suggestions. Among them:
Make sure that if you use backslashes (which is the standard Windows path separator character) in your string literals, you “escape” them using a second backslash. The reason this is required is that the backslash is interpreted as an escape character by the C# compiler, which allows you to type things like
\tto insert a tab. If you want to insert a regular backslash, you have to escape the escape—\\. That’s the reason you were getting an error when you tried to use a single backslash.Instead of escaping the backslash character, you can tell the C# compiler to interpret your string literal exactly as it is typed, including spaces. These are called verbatim string literals. You do this by prefixing the string with the
@character. For example:@"C:\MyDirectory\MyFile.txt"The reason why the forward slash character that you’re using now works is strictly for backwards-compatibility reasons. It isn’t the cause of the error (as you can see from the exception message, which includes the path being searched), but it’s probably still not a good idea to use forward slashes in paths. As I mentioned above, the backslash is the standard path delimiter in Windows.