Top "File-exists" questions

A "FileExists" method provides a mechanism to determine if a specified path/file exists.

How do I check whether a file exists without exceptions?

How do I check if a file exists or not, without using the try statement?

python file file-exists
How do I check if a file exists in Java?

How can I check whether a file exists, before opening it for reading in Java (the equivalent of Perl's -e $…

java file-io io file-exists
Deleting a file in VBA

Using VBA, how can I: test whether a file exists, and if so, delete it?

vba file-io delete-file file-exists
VBA check if file exists

I have this code. It is supposed to check if a file exists and open it if it does. It …

excel vba file file-exists
check if file exists in php

if (!(file_exists(http://mysite.com/images/thumbnail_1286954822.jpg))) { $filefound = '0'; } why won't this work?

php file-exists
How to check if a file exists from a url

I need to check if a particular file exists on a remote server. Using is_file() and file_exists() doesn't …

php file curl fsockopen file-exists
checking if file exists in a specific directory

I am trying to check for a specific file in a given directory. I don't want the code but I …

java directory file-exists
Portable way to check if directory exists [Windows/Linux, C]

I would like to check if a given directory exists. I know how to do this on Windows: BOOL DirectoryExists(…

c file directory file-exists
How to check whether file exists in Qt in c++

How do I check whether a file exists in a given path or not in Qt? My current code is …

c++ qt file-exists
Check if file exists on remote server using its URL

How can I check in Java if a file exists on a remote server (served by HTTP), having its URL? …

java http networking url file-exists