Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
3k views

Check existence of directory and create if doesn't exist

I often find myself writing R scripts that generate a lot of output. I find it cleaner to put this output into it's own directory(s). What I've written below will check for the existence of a ...
9
votes
3answers
103 views

Using Directory.Exists on a network folder when the network is down

My company's code base contains the following C# line: bool pathExists = Directory.Exists(path); At runtime, the string path happens to be the address of a folder on the company's intranet - ...
3
votes
3answers
117 views

File exists in Windows Explorer and notepad, but is not accessable in my program

Why does the following problem happen? Scenario: Make sure that IIS is installed Execute "notepad %WINDIR%\System32\inetsrv\config\applicationHost.config" using admin account Actual Result: the ...
2
votes
1answer
472 views

File.Exists() and File Access Synchronization across processes

I have a couple applications running in separate processes that each write to a central xml doc on the harddrive. I am using a named mutex to synchronize access to the file - but get the following ...
2
votes
4answers
2k views

File.Exists() returns false, but not in debug

I'm being completely confused here folks, My code throws an exception because File.Exists() returns false public override sealed TCargo ReadFile(string fileName) { if (!File.Exists(fileName)) ...
2
votes
4answers
1k views

File.Exists on network == wrong?

In my code i do if (!File.Exists(getSomePath())) { MessageBox.Show("... existing" + " " + getSomePath()); this.Close(); } I can see getSomePath() is correct but when i ...
1
vote
2answers
78 views

solaris 10, java 6 , file.exists cant see the existing file

i have a code that composes millions of small files into tar archives, and therefore i decided to use the /tmp folder of my solaris machine. then i created a ramdisk and instead of /tmp i now use ...
1
vote
3answers
2k views

How to check if a specific file exists in directory or any of its subdirectories

In C#, how do I check if a specific file exists in a directory or any of its subdirectories? System.IO.File.Exists only seems to accept a single parameter with no overloads to search ...
1
vote
2answers
490 views

C# system.io.filenotfoundexception

I am creating an app for my work to track behavior management over the course of a school year. To do this, I obviously needed a database. I built the program so that it would, when opened, check to ...
1
vote
1answer
1k views

File.Exists() incorrectly returning false from ASP.NET - security issue related to Thread vs Process identity?

I have an ASP.NET app using Windows authentication, and I'm testing for the existence of a file on a remote server. I'm authenticating as MYDOMAIN\my.username - this works. The file is ...
0
votes
2answers
70 views

NullPointer when checking if file exists ( file.exists )

My application contains a listview. Each listitem contains out of a imageview and a textview. For showing the image i need check if the image exists in de application data folder. My code works in ...
0
votes
1answer
83 views

VB.NET check if input is a link

Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click If txtSubd.Text = "" Then 'If the input is blank 'DO NOTHING Else ' If its ...
0
votes
6answers
115 views

How to properly use File.Exists in windows application

I have a windows application with an "images" folder. I need to check if an image exists, which it will, during runtime. The below code is what I have but it always returns false. if ( ...
0
votes
1answer
65 views

Did .Net 4.0 change File.Exists?

What used to work for me, when I would check if File.Exists now returns a false. We recently updated to the 4.0 -- and now any files within my personal User folder return FALSE for File.Exists. ...
0
votes
5answers
180 views

Any string in some method e.g. File.Exist()

How can I make, in File.Exist method put some filename that contains some numbers? E.g "file1.abc", "file2.abc", "file3.abc" etc. without using Regex?
0
votes
2answers
259 views

Restrictions by file extension in server 2008?

I am having problems downloading files possibly due to the file extensions not matching the actual file. What is happening is the File.Exists check is returning false for these even though the named ...
0
votes
2answers
1k views

File Exists in WPF

if (!File.Exists("SomeFile.exe")) { //Does not exists } I have SomeFile.exe in the same path as the exe but the result is Does not Exists. This does not happen in Windows Form, does something ...