Tagged Questions
The file-exists tag has no wiki summary.
6
votes
5answers
4k views
Java 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 his url? I don't want to download the file, just check his existance.
Thanks
6
votes
3answers
570 views
Checking if a php process is already running
I'm trying to check if a process is already running by using a temporal file demo.lock:
demo.php:
<?php
$active=file_exists('demo.lock');
if ($active)
{
echo 'process already ...
5
votes
2answers
154 views
is_file() or file_exists() return FALSE for 5 to 20s after upload
Here's what i'm doing: [Sample A]
uploading an image
generating 2 images from it, and saving them on the file system using imagejpeg()
Once it's done, i notice two things: [Sample B]
is_file() ...
5
votes
2answers
926 views
PHP check file exists without knowing the extension
I need to check if a file exists but I don't know the extension.
IE I would like to do:
if(file_exists('./uploads/filename')):
// do something
endif;
Of course that wont work as it has no ...
5
votes
8answers
22k views
Verify if file exists or not in C#
I am working on an application. That application should get the resume from the users, so that I need a code to verify whether a file exists or not.
I'm using ASP.NET / C#.
4
votes
1answer
117 views
How can I in ant wait until a file is usable?
I'm trying to fix a build file where a part of it runs a bash script to generate a file. This file generation takes under a second and wasn't a problem until we moved to eclipse.
The issue is that if ...
4
votes
3answers
64 views
PHP and file_exists - clarification of a note on the documentation
I was checking the documentation for the file_exists() PHP function.
The documentation at some point reads:
The check is done using the real UID/GID instead of the effective one.
What does that ...
4
votes
2answers
2k views
How can you check if a file exists before including/importing it in JSP?
Assuming that requestScope.importMe is expecting a path to a jsp file
<c:choose>
<c:when test="${!empty requestScope.importMe && fileExists(requestScope.importMe) }">
...
4
votes
6answers
6k views
PHP's file_exists() will not work for me?
For some reason this PHP code below will not work, I can not figure it out.
It is very strange,
file_exists does not seem to see that the image does exist, I have checked to make sure a good file ...
3
votes
2answers
89 views
How check if file exists from web address url in php?
I need to check if a particular file exists on a remove server:
http://www.site.com/images/test.jpg
is_file and file_exists doesn't don't work. Any ideas how to do this quickly and easily?
3
votes
4answers
262 views
Multiple File Exists Checking? A Better way?
I have a script. It recieves a variable called $node, which is a string; for now, lets assume the variable value is "NODEVALUE". When the script is called, it takes the variable $node, and tries to ...
3
votes
1answer
1k views
PHP file_exists() returning false on some files
I'm having a strange problem with the file_exists() PHP function on a Linux server.
When using file_exists to check the image is on the server before editing it, it will sometimes fail for no ...
3
votes
3answers
163 views
Why is this code so quick?
EDIT: This has been because of bug in my code (probably), after debugging and adding checking for correct response in my tests, test prove NO difference (what irks me a little), more in my own answer ...
3
votes
3answers
316 views
CPU load with file_exists in php
i own a site with a high load cpu httpd request per minute. I've noticed i use "file_exists" on each httpd request. Is that function to much heavy?
3
votes
13answers
3k views
file_exists() is too slow in PHP. Can anyone suggest a faster alternative?
When displaying images on our website, we check if the file exists with a call to file_exists(). We fall back to a dummy image if the file was missing.
However, profiling has shown that this is the ...
2
votes
5answers
41 views
JAVA : file exists Vs searching large xml db
I'm quite new to Java Programming and am writing my first desktop app, this app takes a unique isbn and first checks to see if its all ready held in the local DB, if it is then it just reads from the ...
2
votes
5answers
45 views
check if file exist in folder
My script:
$secret = check_input($_GET['secret']);
if(isset($_POST['register'])) {
if (isset($secret) || !empty($secret)) {
if (file_exists(ROOT . '/intl/codes/' . $secret)) {
...
2
votes
2answers
98 views
PHP:is_file() and file_exists() return different results on same file
I am having an issue where file_exists returns false and is_file returns true.
echo(getmygid()." = gid\n"); //501
echo(getmyuid()." = uid\n"); //501
echo(posix_getgid()." = pgid\n"); //501
...
2
votes
1answer
130 views
PHP: clearstatcache() not working [closed]
My workflow is pretty simple:
I delete a file
I call clearstatcache()
I save a new file
I call clearstatcache()
Still, at the end, is_file() returns false for a while before deciding to return ...
2
votes
7answers
112 views
PHP file_exists() anomaly
i ran into this wierd problem: the $myImg variable has been extracted from some local html and points to a file i would like to check. With the string variable file_exists gives false, but if the ...
2
votes
2answers
80 views
file_exists() or is_readable()
Which one should you use when you want to include a PHP file?
if(file_exists($file) require "$file";
or
if(is_readable($file) require "$file";
?
2
votes
5answers
369 views
PHP file_exists($var) not working
I'm trying to write some code on my notebook and am using the xampp environment. I have the following piece of code:
class A {
...
foreach ($blocks as $block) {
$block = 'dir/dir2/' . $block;
...
2
votes
2answers
328 views
unlink/file_exists and file not found
I have this code in my application, often run in race condition by severals users of my application
clearstatcache(TRUE, $filepath);
if(file_exists($filepath)) unlink($filepath);
But, for this line ...
2
votes
2answers
508 views
determining if a flash drive exists from a batch file without error messages
I have batch files with the construct:
if exist F:\ copy /y Application.exe F:\
at the end of a compile, to copy the executable to a USB key if it is plugged in. It has worked fine with USB keys ...
2
votes
3answers
276 views
php weird file_exists bug
Has anyone got any idea to why doesn't the following work ?
$file = 'images/thumbs/1%20-%20Copy.jpg';
if(!file_exists($file)){
die('NOT THERE');
}
echo 'Yes its there.';
The problem is with the ...
2
votes
2answers
206 views
Are there any pitfalls to testing for file existence in a while conditional?
I recently came across an interesting line of code that waits until a particular file springs to life:
sleep 1 until -e $file;
While at face value the line does what one expects it to, I can't but ...
2
votes
4answers
432 views
How to detect if a file exist in a project folder?
I am having a collection of images in my project folder.
how to detect if a image exist in my project folder? I am using c#. Thanks.
2
votes
2answers
150 views
Finding a file with a specific name with any extension
Please note that I want the compartment number to change.
<?php
$compartment = "1";
/* HERE I NEED SOME SCRIPT TO FIND THE EXTENSION OF THE FILE NAME $compartment AND TO SAVE THAT AS ...
2
votes
6answers
956 views
file_exists() for a file that contains (&) in filename
$filename = "Sara & I.mp3";
if (file_exists($filename)) {
...
}
If the filename has a "&" PHP does not return true for file_exists
How can I escape "&" in the $filename for the ...
1
vote
3answers
112 views
Java isFile(), isDirectory() without checking for existence
I want to check if a given String is a file or a directory, i've tried the methods isFile() and isDirectory() of the File class but the problem is that if the directory or file doesn't exist these ...
1
vote
1answer
74 views
Is there a way to do this check without two if statements in PHP?
i have this if statement
if(file_exists( $_SERVER{'DOCUMENT_ROOT'}.$writabledir.$name) && filemtime($_SERVER{'DOCUMENT_ROOT'}.$writabledir.$name) < $olddate) {
if the file is there all ...
1
vote
2answers
84 views
How do you get the first existing ancestor directory given a file path?
In Perl, if given a file path, how do you find the first existing ancestor?
For example:
If given the path /opt/var/DOES/NOT/EXIST/wtv/blarg.txt and directory /opt/var/DOES/ is not present but ...
1
vote
1answer
170 views
PHP file_exists will not work
I have been having problems with file_exists function in PHP that it always returns false, though the file is there as I can remove the if statement and it shows up fine.
$filename = ...
1
vote
2answers
237 views
How can you check if a file is stored in Azure Blob
We have a flash app running on our web site (which is a Azure site). It needs to access images in blob storage. I had to create a crossdomain.xml file programatically so there won't be any issues ...
1
vote
4answers
55 views
file_exists in php code
I have a simple statement below:
if(file_exists('/images/alum/'.$profile['pic']))
echo '/images/alum/'.$profile['pic'];
else echo '/images/user_default.jpg';
The file is there but it's always ...
1
vote
2answers
70 views
href depending on ajax success or fail
In my Wordpress, I have custom attachment sizes set at 128x79 and 896x277. My images will for sure be larger than 128x79. If the image is smaller than 896x277, it crops off whatever is larger than the ...
1
vote
0answers
37 views
Performance: missing file vs. file exists vs. htaccess
I have a page that serves up thumbnails and occasionally one goes missing. I was about to add a file_exists() into the code within the thumbnail loop but then thought that this extra function might ...
1
vote
2answers
418 views
Return if file exists VBA Mac Office 2011
I'm trying to find how I can know if a file exists with VBA on Mac Office 2011.
My macro is working with Office 2004 but doesn't work with 2011.
I'm using the Dir function. If he function return ...
1
vote
6answers
238 views
php echo if two conditions are true
The actual code looks like this:
if (file_exists($filename)) {echo $player;
} else {
echo 'something';
but it displays the player even if the id is not called from the url
i need something like ...
1
vote
2answers
354 views
Check if image exists on remote server before downloading
Im trying to download images from remote server, resize and then save it local machine.
To do this I use a WideImage.
<?php
...
1
vote
2answers
54 views
file_exists with reserved filenames bug
Ok here's my code
$ref = $_GET['ref'];
if (file_exists('views/'.$ref.'.php')) {
$this->prepare($ref);
}
elseif (!file_exists('views/'.$ref.'.php')) {
...
1
vote
2answers
350 views
How to tell if dynamically loaded image exists
I'm dynamically loading images from a different website into an asp.net ListView control like this:
<ListView>
<ItemTemplate>
<img src='<%# ...
1
vote
3answers
201 views
PHP - file_exists or array cache?
I have a PHP code which includes several files if they exists. It might be 150 files to include.
Is it slow to use file_exists in this case? Should I build an array to create a cache of the file ...
1
vote
3answers
2k views
How to check if file exist when downloading from FTP
I'm downloading from FTP server and I don't know exactly how to check if file already exist. What I want to do is that I retrieve filname from FTP server and then compare it with all files in folder. ...
1
vote
7answers
642 views
file_exists() isn't finding the file
if(file_exists("./squadra/photos/photog.jpg")) {
echo "### YES ###";
} else {
echo "### NO ###";
}
if i run this function on /zones/team.php it works (it print YES). If i run this function ...
1
vote
1answer
381 views
How can I check if a set of files exists in an Ant build?
I'm wondering if there's a way to, using Ant, check if several files are available on disk.
Currently, I have a task that looks like this:
<target name="copyArtworkToOutputDir" ...
1
vote
2answers
77 views
Check whether an image file exists in a directory or not using PHP
I have image files in a directory which have downloaded from several resources.
If I have the name of an image, how can I check its existence using PHP?
1
vote
6answers
2k views
PHP File Exists Always False
I have a case where file_exists() is always returning false. My latest attempt was to just test to see if it would return true for $_SERVER["SCRIPT_FILENAME"] and then return the value of the path if ...
0
votes
2answers
9 views
How to check existence of a file in network with c# in .net mvc 3
I'm trying to reach a file in network but it gives me the error the path is not found.
What should i do to check existence of a file in network with c# in .net MVC 3
...
0
votes
1answer
28 views
Optimize image output performance
I have a php file which checks if an image is available. If it is, the image will be returned to the user, if not it will be created and then returned to the user.
if(file_exists($filepath)) {
...