The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
2answers
22 views

NSURL with string giving null value

Below is what I have NSString *foofile = @"/Users/alkandari/Library/Application Support/iPhone Simulator/6.1/Applications/8C445026-6387-4E40-B5A3-D1A1680666D6/Documents/ProjacsBODFiles/file_5_21.pdf" ...
0
votes
1answer
23 views

Concise method of using file_exists for a range of filenames

I am using file_exists to determine whether certain image files are in the specified directory, and if they are, displaying them within an image rotator. It works fine but the code seems very long ...
0
votes
3answers
35 views

adding generic image if empty or broken

i have a products portfolio each one has an image, if the DB field 'image' is empty i'm loading a generic image, but if in some case the field has an image value but the file doesn't exists i want to ...
1
vote
2answers
28 views

Trying to include a file, file_exists is essential?

Sorry for possiblely reduplicate asking. But it's hard to use this confusable keyword to search a answer. So here is scenario: I try to get a advise to make my simple autoloader. Here is i made so ...
0
votes
1answer
102 views

Case sensitive Directory.Exists / File.Exists

Is there a way to have a case sensitive Directory.Exists / File.Existssince Directory.Exists(folderPath) and Directory.Exists(folderPath.ToLower()) both return true? Most of the time it doesn't ...
0
votes
1answer
65 views

PHP Rename File name if Exists Append Number to End

I'm trying to rename the file name of an image when it's uploaded if it exists, say if my file name is test.jpg and it already exists I want to rename it as test1.jpg and then test2.jpg and so on. ...
0
votes
1answer
36 views

php function file_exists with condeigniter

I am using codeigniter, I want to show a user page with his profile picture shown. When a user uploads a profile picture, it will get the same name as the username (where the old profile picture will ...
0
votes
1answer
79 views

If file does not exist, create it and write string to it. If it does then append string to it. Isn't working right

Okay, I read a lot and thought I had this worked out but apparently not. What I'm trying to do is check to see if a file exists (in this case heapFile.csv) and if it doesn't to create it and then ...
-4
votes
2answers
104 views

Check if a file exist in directory or subdirectory [duplicate]

I want to check if a file exists in a directory or a sub-directory. string[] filePaths = Directory.GetFiles(padserver, "*", SearchOption.AllDirectories); try { DataContainer.bestaatal = false; ...
0
votes
2answers
35 views

AWSSDK S3 - if_object_exists keeps returning false when file does exist

I'm currently using the following code: include 'lib/sdk.class.php'; $s3 = new AmazonS3(); $bucket = 'mybucket'.strtolower($s3->key); $key = 'myfile.txt'; $response = ...
-1
votes
1answer
68 views

How to find files whose paths do not exist in the text file using powershell

I need to check and return files that exist in the filesystem, but are not listed in a given text file. For instance, my text file (sample.txt) will contain paths like: ...
4
votes
3answers
57 views

case sensitivity on Mac for file_exists()?

First off, Mac OS X is not my native operating system but since I'm comfortable in Ubuntu, it's been an easy transition for the most part. Being that it's Unix-based, I was under the impression this ...
0
votes
2answers
55 views

php file exists returns nothing always - CodeIgniter

I'm wanting to display images. The user can add up to 7 images, but they can also add less than 7 if needed. I searched around and saw that file_exists() is the function I'm after, but I've tried a ...
0
votes
2answers
65 views

file_exists using file on different drive

Can anyon eplease tell me how I can use this function for a file on a different drive? The code below does not find the file. $loaded_php = "C:/Program Files(x86)/PHP/v5.3/php.ini"; ...
4
votes
2answers
123 views

Under Windows XP, with the C language: Checking if a file is open

In my application, written in C, under Windows-XP: how can I check if a file is already open by another application? One option is to rename the file, and to check if it was renamed. Another option ...
0
votes
2answers
131 views

PHP File Exists return false

Anyone can help me? When using file_exists() alwasy returning false. But the file actualy exists and can be loaded using require. This is my code: // Creating dependency lists. $data_dependency = ...
0
votes
2answers
70 views

how to check if .exe file exists in php

Hi there is there any way to check if .exe file exists on a given path or not. I have installation of ImageMagic. I have a path of convert.exe of Image Magic. I need to check that in given path the ...
0
votes
2answers
54 views

php check if a file is in a folder

I'm writing a script where I want to save a logo image. I create a "logo" folder for each user, e.g. user-data/user_1/logo/img007.png If the user decides to upload a different image after a while I ...
0
votes
1answer
56 views

Visual Studio 2012 Form Design Loading Error

I have problem like this : When I opened VStudio2012 and created new project, shown this error: http://a1303.hizliresim.com/17/8/kvkqp.jpg then I retry to open new project, I see this error; ...
-1
votes
2answers
86 views

PHP if file_exists() statement fails on file_get_content() from URL

I have a very simple function to read URL image file and save it on server. function o99_download_shot_binary(){ $url = esc_url_raw( o99_get_content_link() ); // function returns http:// url ...
0
votes
2answers
344 views

Wait until jquery ajax request is done and return value

I want to wait until ajax call complete and return the value. function isFileExists(url) { var res = false; $.ajax({ type: "GET", async: false, url: url, ...
1
vote
0answers
52 views

Accessing an image while writing it to file system on iOS

My app is loading bunch of images from network and saves them to local file system (FS) in app sandboxed environment. When I save image to FS I do it using GCD like that: ...
0
votes
1answer
49 views

Cron job doesn't “unlink” files - why?

I have a php script that deletes a file from a specific folder on my server: if (file_exists($_SERVER['DOCUMENT_ROOT']."/folder/file1")) { unlink($_SERVER['DOCUMENT_ROOT']."/folder/file1"); } When ...
3
votes
2answers
95 views

file_exists doesn't seem to work correctly

I've got a php-script that i want to execute, only if an other instance of the script isn't already running. I've got this code: $lockfile = __DIR__.'/lock.file'; if(file_exists($lockfile) == false) ...
0
votes
1answer
60 views

php clearstatcache

I am testing out the PHP clearstatchache function as follows: //[1] First attempt to access non-existent file var_dump(file_exists("gates.txt")); returns false //[2] Now manually create the file ...
0
votes
0answers
46 views

How to use file_exists on remote server?

I am trying to run a script that connects via ftp to grab some files. I can connect and list the contents of the directory and see the files that I want to grab, BUT when I perform the file_exists it ...
0
votes
2answers
72 views

Very weird PHP file_exists issue

I run into a very weird situation with file_exists function. The hosting company said their php was configured in CGI mode instead of PHP mode. below is the code. It checks the existence of the file ...
1
vote
3answers
141 views

powershell if file doesnt exist log string to file

I have many file paths stored in a DB. I need to check if the files actually exist. I've done this before but lost the script for it and need some help. I put all the paths in a text file and want to ...
0
votes
1answer
87 views

file upload doesn't check for existing image

I got the below code from tidy-designs and it works fine except it doesn't check for existing image. when I upload the same image again it accepts with out any error. I figured out that the script is ...
0
votes
3answers
47 views

The management of files and folders in codeIgniter can be made from controller or model?

I want to verify if file/folder exists on my CI system (not system folder), can i do it from controller or I need create a method on my model to do it?
0
votes
2answers
121 views

Check If A Portion Of A Filename Exists

So I know in the following code example, it checks to see if a file exists (full filename)... If My.Computer.FileSystem.FileExists("C:\Temp\Test.cfg") Then MsgBox("File found.") Else ...
1
vote
2answers
92 views

file_exists - PHP return dynamic public_html path

I am trying to find if a file exists in the public_html folder of the server. 1st try: if ( file_exists('./local-config.php')) { but this only works if the php file calling the above if statement ...
0
votes
2answers
337 views

Check if a file exists in Yii

I am creating a bunch of modules that all extend a base module. However, some actions need to override the base view. In that case, I'd like to check if the new module has a view in its structure. If ...
0
votes
0answers
75 views

Code Igniter Controller Logic Explanation

There's some code that I've given to and I can't even understand how it works, so hope you guys help me about it. There's this controller folder that has a file named bs.php and a function that ...
2
votes
3answers
77 views

checking image existance from client side

I am developing one image gallery website, which may have thousands of photos in future. All the images comes from other Website / API or user uploads. User uploaded images <img ...
0
votes
3answers
151 views

Using file_exists to check if image exist before echo

I'm trying to let my script check if an image exist before echoing it into my table. If it doesn't exist, it should echo another image in stead. My problem is that even though the image exist, it ...
-2
votes
3answers
154 views

PHP file_exists

This should be simple but it doesn't work $photo = "../members/".$vid.".jpg"; if (file_exists ($photo)) echo "<img id='memberpic' src = '$photo'/>"; In this case the image is ...
0
votes
3answers
370 views

PHP file_exists but rename fails “No such file or directory…”? [closed]

Thinking creation of the file in question lags a bit behind the offending function, I tried running a while loop to buy a little time before calling rename. $no_file = 1; while($no_file ...
0
votes
1answer
133 views

Checking a file existence on another server

I have two servers A and B. I'm suppose to send, let said an image file, from server A to another server B. But before server A could send the file over I would like to check if a similar file exist ...
0
votes
2answers
139 views

File_exist returning false all the time on Symfony 2

Im trying to check if a file exist on my /uploads folder of symfony 2. $file = $this->getAssetUrl('/uploads/hd/'.$gift->getImage()); if(file_exists($file)) return ...
-1
votes
1answer
28 views

access data from network / with php [closed]

if i try to access data from my computer it works $test = "\\\\Pcname\folder\blabla.txt"; or $test = "D:\\folder\blabla.txt; if (!file_exists($test)) { die("Could not find file."); } but i want ...
0
votes
1answer
256 views

File exist in JSTL in jsp

Is possible to check in JSTL if file exist (exactly an image): Simply issue of viewing profile image. If is in the folder with images profile image show the profile image, if not show default image. ...
0
votes
3answers
167 views

jQuery: insert image only if it exists

I'm using jQuery to insert an image and blob of text into my document, but I only want to include the image if it actually exists (the image path is a variable, img_url, that may or may not reference ...
0
votes
3answers
112 views

PHP skip case sensitivity in file extension

I have rows on my database table which some are not synchronized on the directory. ex. on my table I have image.png but on my directory I have image.PNG now, Im having a problem to check if ...
3
votes
3answers
1k views

Python, subprocess, call(), check_call and returncode to find if a command exists

I hate asking questions here because I feel the answer should be out there some place and if I just worked a little harder I could figure it out myself. I'm just not finding a lot of easy to ...
7
votes
2answers
95 views

Does include() use file_exists()'s cache?

The question is quite simple: When it comes to touching the disk, are these two examples equal, or does scenario #2 touch the disk twice? Scenario #1 include '/path/to/file.php'; Scenario #2 if ...
1
vote
0answers
293 views

ansible include_if_exists

I'm looking for a way to conditionally include a file in an Ansible play, if the file exists. Using "include" unfortunately throws a fatal error if the file doesn't exist. I'm looping through a bunch ...
1
vote
2answers
351 views

Case sensitive file extension and existence checking

I need to check whether or not a file exists. Which can be accomplished by File#exists() method. But this existence checking is case sensitive. I mean if I have a file name some_image_file.jpg in code ...
0
votes
2answers
106 views

Adding a value to the end of a file if it's duplicate in php yii

I am trying to handle duplicate filenames. if a user uploads a file name called "file" then another user uploads a file called "file" I want to be able to add a 1 to the new file so it would be now ...
0
votes
0answers
87 views

Process Close does not close a process performing FileExist() with a network path

The script below creates a child process to perform FileExist() separately from the main script in order to avoid halting the script when an unknown network path is passed. However, the command, ...

1 2 3 4