Tagged Questions
The unlink tag has no wiki summary.
11
votes
6answers
943 views
Guaranteed file deletion upon program termination (C/C++)
Win32's CreateFile has FILE_FLAG_DELETE_ON_CLOSE, but I'm on Linux.
I want to open a temporary file which will always be deleted upon program termination. I could understand that in the case of a ...
7
votes
1answer
337 views
Change read/write permissions on a file descriptor
I'm working on a linux C project and I'm having trouble working with file descriptors.
I have an orphan file descriptor (the file was open()'d then unlink()'d but the fd is still good) that has ...
4
votes
3answers
404 views
how to change symlink target while preserving inode
Normally to change a symlink target one will first unlink the file and then re-creating the symlink with the new target path. However it will be assigned a new inode number.
Maybe there is a private ...
3
votes
4answers
594 views
PHP: recursive delete
I have this code to recursive delete files and directories. It works fine but has a little problem. If $path = /var/www/foo/ it will delete everything inside of foo, but not foo. I want to delete foo ...
3
votes
7answers
370 views
How to avoid UNLINK security risks in PHP?
I'm using UNLINK with PHP and AJAX. I know that in this way is very dangerous, because everyone can delete any files. But I need to use AJAX because I can't reload the page when I delete the files.
...
2
votes
1answer
41 views
Does vfsStream allow unlink empty dir?
My unit test tries to remove an empty dir. The class under test uses unlink (result of a previous test). If I write the same code without vfsStream I cannot remove the empty dir.
Unit test:
require ...
2
votes
1answer
51 views
PHP recursive delete function gives warning message
My function cleanup looks like that.
function cleanUp($exdirs, $exfiles){
$it = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator('.'),
RecursiveIteratorIterator::CHILD_FIRST
);
...
2
votes
3answers
115 views
PHP recursive delete function
I wrote recursive PHP function for folder deletion. I wonder, how do I modify this function to delete all files and folders in webhosting, excluding given array of files and folder names (for ex. ...
2
votes
3answers
426 views
PHP:: How to delete a file from server after is read. Unlink() is executed before
I'm trying to delete a picture (.jpg) from server after the first time showed.
But the file is deleted (unlink();) before showed. I've already tried with sleep() but this only delay the loading and ...
2
votes
2answers
95 views
Is there a way to completely remove an inode when the Link count is 2?
Currently my data is organised in a volume which has a cache directory (where all the files are first created or transferred). After that there are suitable directories on the volume which in their ...
2
votes
2answers
327 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
285 views
unlink function not working for image in Internet Explorer
I have a problem in image unlink in Internet Explorer, but it works in Mozilla.
I have used php code:
<?php
unlink("./product_photos/".$name);
?>
2
votes
2answers
195 views
php unlink continuously
I am experimenting with php unlink(), what i want to do is run a php script that deletes files created every few minutes after parsing them. I can do that with a cron or as continuously running the ...
2
votes
2answers
198 views
Unlink function in php
Is it possible to erase user-defined function?
My CMS has one function, which I want to update with additions.
Trying to add some code to theme's code, that would make my code work only when this ...
2
votes
2answers
143 views
File deletion fails sometimes on Mac
Technical Q&A 1497
and this question (whose answer copied from the tech note) indicate that, when getting fBsyErr from FSDeleteObject, the proper workaround is to call FSUnlinkObject on 10.5+.
...
2
votes
4answers
671 views
Delete files with special characters in filenames
I need to delete old files with special characters in filenames like space,,,(,),! and so on via PHP. Classic unlink($filename) does not work for these files. How can I transform filenames to ...
2
votes
3answers
343 views
Relinking an anonymous (unlinked but open) file
In Unix, it's possible to create a handle to an anonymous file by, e.g., creating and opening it with creat() and then removing the directory link with unlink() - leaving you with a file with an inode ...
2
votes
5answers
357 views
Delete files then directory | PHP
I have this so far:
<?php
$path = "files/";
$files = glob("" . $path . "{*.jpg,*.gif,*.png}", GLOB_BRACE);
$i = 0;
foreach($files as $file)
{
$delete = unlink($file);
if($delete)
...
2
votes
3answers
591 views
PHP unlink OR rewrite own/current file by itself
Task: Cut or erase a file after first walk-through.
i have an install file called "index.php" which creates another php file.
<?
/* here some code*/
$fh = fopen($myFile, 'w') or die("can't open ...
2
votes
1answer
84 views
Why can't I delete a file from a PHP daemon's child process?
I am building a simple PHP daemon script, using a php Daemon class provided at:
http://www.phpclasses.org/browse/file/8958.html
I'm stuck with this class for better or worse, and I don't have much ...
2
votes
2answers
3k views
PHP: remove array element by element pointer (alias)
Is it possible to remove an array element by a pointer?
Multidimensional array:
$list = array(
1=>array(
2=>array('entry 1'),
3=>array('entry 2')
),
...
1
vote
3answers
40 views
php unlink file renovated
I want to delete with php (unlink function) file which is out of webroot. my web root is in
C:\server\webroot\project\... in webroot I have folder named project and in there I have .php files.
...
1
vote
1answer
33 views
I have write permissions on a file, but I can't use the “unlink()” function to delete it
I've Googled around a bit, and can't find any answer that works for me. I'm trying to unlink a file, but nothing happens and no errors appear (display_errors() stopped the page from loading). The code ...
1
vote
1answer
75 views
PHP - How to unlink a file with no file extention
This work great to delete php, txt and images but I recently starting using an image resize that inserts temp images in to my trash folder.
* example name 2616cf442b6cd3e1313161551fad6078 *
File ...
1
vote
4answers
51 views
PHP - Deleting folder/files only if there are no more in there
$value can = a folder structure to the language file. Example: languages/english.php
$value can also = the files name. Example: english.php
So I need to get the current folder that $value is in ...
1
vote
1answer
85 views
Zip Multiple file Than unlink the file
<?php
$direc = base64_decode($_GET['path']);
$zip = new ZipArchive();
if ($zip->open($archive_file_name, ZIPARCHIVE::CREATE) !== TRUE) {
exit("cannot open ...
1
vote
1answer
154 views
Using a wildcard in php unlink
I am currently making a php script to graph a bunch of data from a DB, arrange it into text files and then run a GNUPlot script to generate graphs. I have all of this working , now all I need to do is ...
1
vote
3answers
130 views
tying in unlink() with sql delete
I have setup a simple while loop which returns all images in a table along with their respective title and description so that users can update the details accordingly for each image.
The images are ...
1
vote
2answers
127 views
why Unlink dose not work on this script?
What you see below is a pat of my script. The problem is that i need only the re-sized thumb image and not the original file. The image wont re-size if it is not uploaded therefore the process should ...
1
vote
4answers
480 views
How can I delete files older than 1 hour?
php how to delete files which create time over 1 hous? All the files are in folder ../temp
the files like XXXXXX.txt, XXXXXX.xml, XXXXXX.html
It seems should use unlink, but how to judge the files' ...
1
vote
0answers
164 views
PHP unlink woes
I am using php function unlink() as you most probably assumed but it seems to be giving me a false negative... It gives me this warning:
Warning: ...
1
vote
1answer
176 views
Unlink and SplFileObject
Is it possible to unlink a file from an SplFileObject?
I don't see a method to close the underlying resource, and the file handle is private so one can't extend SplFileObject with that goal in mind.
...
1
vote
1answer
786 views
How to unlink or log out of dropbox account on iOS
I am using Dropbox in my own app. Once I login, the tableview is displayed and every time I load that view, I go straight to the table view. But, my concern is, suppose different people are using this ...
1
vote
5answers
754 views
File exists but will not UNLINK (PHP)
I am trying to check if a file exists and if so delete it. For some strange reason, checking the file returns true but it won't unlink for the life of me. Here is the code I have.
...
1
vote
1answer
215 views
PHP process can't delete a file in `/var/run/`
I have a PHP process that:
starts as root
writes to and then closes a pid file in /var/run/
chown()s said pid file to another user
changes to that user via posix_setuid()
tries to delete pid file at ...
1
vote
1answer
181 views
Why won't my php code “unlink” text files?
I have two text files, and a PHP script intended to delete them. My question is: why won't the two text files delete? They are both set to 777, maybe i should change permission settings? I think it's ...
0
votes
2answers
56 views
php unlink file
I've such a situation. I want to delete .wav file which is out of webroot directory , but I've defined in httpd.conf (apache) alias of this directory like "mp3" . this is working nicely, because I can ...
0
votes
0answers
40 views
unlink() docroot issue in wamp
from today I've started having a strange problem with unlink() on wamp, without having changed anything from yesterday when it was working fine. It looks like the DOCROOT value is being replaced by ...
0
votes
3answers
99 views
Deleting a product with related pictures with PHP
In my PHP application I have products which have images in 3 sizes - big, thumbnails and small thumbnails. Each image is stored in a separate folder:
Images - /gallery
Thumbnails - /gallery/bigthumbs
...
0
votes
3answers
117 views
Problems deleting File PHP
This is my code to pull information from my sql database and then I want to delete the .txt files in each directory, but I can't seem to figure out why it won't delete the files.
<?php
...
0
votes
3answers
171 views
Delete a file on the website using PHP?
Hey i'm trying to make my website delete a file using the unlink(); function. but when i try it comes up with this:
Warning: unlink() [function.unlink]: cURL does not allow unlinking in ...
0
votes
3answers
44 views
PHP unlink is asking for a string trying to give it sql string
I am trying to delete an item from a folder somewhere, and I need to pass in the path of the item to unlink(). For some reason it says I am not returning a string, which I am not sure how to do.
Here ...
0
votes
2answers
70 views
php unlink() not found
When I call unlink like so:
unlink($_FILES['upload_file']['tmp_name']);
I get the following error message:
unlink(): No such file or directory in /home/user/public_html/file.php on line 18, referer: ...
0
votes
2answers
53 views
php $_GET dont take my document name with space so I cant unlink?
I have a problem I tried to retrieve a file with this code:
<?php
$path= "./uploadedfiles/";
$dir= dir($path);
while ($file = $dir->read()) {
echo $file . "<a ...
0
votes
4answers
64 views
Unlink function problem
I'm testing Unlink in php to delete some files.
The files are indeed removed, i can't see them anymore, but what's surprising is that my hard drive space never goes down.
I want to delete completly a ...
0
votes
0answers
83 views
Php unlink security flaws [closed]
I've read alot on here about the security flaws with unlink with php.
I was more curious as to whether there is a way round that by possibly md5 hashing the image when it comes to deleting it.
Having ...
0
votes
1answer
316 views
upload and delete images php sql
Ok,
I have built an insert image page (uploader.php) but I have 2 issues.
The code is:
<?php
$target = "images/test/";
$target = $target . basename( $_FILES['photo']['name']);
...
0
votes
1answer
58 views
PHP unlink function help
I wrote a PHP script to delete files selected in a gridview. This is the first time I've done this. The script works fine on my local development machine but I don't know if this is the proper way to ...
0
votes
1answer
128 views
Code to zip uploaded files fails to delete temporary files
I guys, i'm writting code to upload file, zip them and delete tmp file.
But when i use unlink function, it do not remove all file, someone can explain to me why ?
Concerned php code :
$zip = new ...
0
votes
1answer
108 views
Perl script not sending mail and not unlink - ing
I have some scripts that I didn't write... they search a Squid log database and then create a spreadsheet and email it and then delete the .pid and .xls files it created.
The scripts were using NTLM ...