13

I'm trying to use PHP unlink() function to delete away the specific document in the folder. That particular folder has already been assigned to full rights to the IIS user.

Code:

$Path = './doc/stuffs/sample.docx';
if (unlink($Path)) {    
    echo "success";
} else {
    echo "fail";    
}

It keep return fail. The sample.docx does reside on that particular path. Kindly advise.

neophyte
  • 6,540
  • 2
  • 28
  • 43
JLearner
  • 1,271
  • 9
  • 27
  • 40

5 Answers5

13

I found this information in the comments of the function unlink()

Under Windows System and Apache, denied access to file is an usual error to unlink file. To delete file you must to change the file's owner. An example:

chown($tempDirectory . '/' . $fileName, 666); //Insert an Invalid UserId to set to Nobody Owern; 666 is my standard for "Nobody" 
unlink($tempDirectory . '/' . $fileName); 

So try something like this:

$path = './doc/stuffs/sample.docx';

chown($path, 666);

if (unlink($path)) {
    echo 'success';
} else {
    echo 'fail';
}

EDIT 1

Try to use this in the path:

$path = '.'
         . DIRECTORY_SEPARATOR . 'doc'
         . DIRECTORY_SEPARATOR . 'stuffs'
         . DIRECTORY_SEPARATOR . 'sample.docx';
Marcio Mazzucato
  • 8,841
  • 9
  • 64
  • 79
9

Try this:

$Path = './doc/stuffs/sample.docx';
if (file_exists($Path)){
    if (unlink($Path)) {   
        echo "success";
    } else {
        echo "fail";    
    }   
} else {
    echo "file does not exist";
}

If you get file does not exist, you have the wrong path. If not, it may be a permissions issue.

Travis
  • 5,021
  • 2
  • 28
  • 37
  • Hi travis. It give me file does not exist. But the path is also used to download the document and it works.... – JLearner Jul 13 '12 at 03:10
  • ./ means the path is relative to the path the script is run from. Is this script run from the same directory the script to download the file is run from? – Travis Jul 13 '12 at 03:23
  • You mentioned the path is acquired from another page with a ./ in front of it. Can you provide more code or an in depth reference to where the file path is coming from? – Travis Jul 13 '12 at 03:24
  • hi travis, the path can be parse to this form. I confirm because i can echo it out. It's the same as sample path given. – JLearner Jul 13 '12 at 03:53
2

This should work once you are done with the permission issue. Also try

ini_set('display_errors', 'On');  

That will tell you whats wrong

leet
  • 933
  • 1
  • 13
  • 27
1
define("BASE_URL", DIRECTORY_SEPARATOR . "book" . DIRECTORY_SEPARATOR);
define("ROOT_PATH", $_SERVER['DOCUMENT_ROOT'] . BASE_URL);

$path = "doc/stuffs/sample.docx";

if (unlink(ROOT_PATH . $Path)) {   
  echo "success";
} else {
  echo "fail";    
}

// http://localhost/book/doc/stuffs/sample.docx
// C:/xampp/htdocs\book\doc/stuffs/sample.docx
antelove
  • 3,216
  • 26
  • 20
0

You need the full file path to the file of interest. For example: C:\doc\stuff\sample.docx. Try using __DIR__ or __FILE__ to get your relative file position so you can navigate to the file of interest.

James Woodruff
  • 963
  • 6
  • 10