[PHP] Deleting a read-only file (Windows)

2002-06-26 Thread Neil Freeman

Hi there,

I'm trying to delete a file using PHP's unlink() function (on Windows). 
This works fine on writable files but fails when trying to delete 
read-only files. How can I delete read-only files? Is there a function 
available to change the permissions?

Any help greatly appreciated.

Neil

-- 

Work: [EMAIL PROTECTED]
Home: [EMAIL PROTECTED]

Web:  www.curvedvision.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Deleting a read-only file (Windows)

2002-06-26 Thread Lowell Allen

 From: Neil Freeman [EMAIL PROTECTED]
 
 I'm trying to delete a file using PHP's unlink() function (on Windows).
 This works fine on writable files but fails when trying to delete
 read-only files. How can I delete read-only files? Is there a function
 available to change the permissions?
 
I thought unlink() did not work on Windows. Notes in the manual suggest this
for Windows:

system(del name.ext);

--
Lowell Allen


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Deleting a read-only file (Windows)

2002-06-26 Thread Neil Freeman

unlink() works fine apart from when trying to delete read-only files. 
Thanks for the suggestion anyway.

Neil

Lowell Allen wrote:
 **
 This Message Was Virus Checked With : SAVI 3.58 May 2002 
 Last Updated 14th June 2002
 **
 
 
From: Neil Freeman [EMAIL PROTECTED]

I'm trying to delete a file using PHP's unlink() function (on Windows).
This works fine on writable files but fails when trying to delete
read-only files. How can I delete read-only files? Is there a function
available to change the permissions?

 
 I thought unlink() did not work on Windows. Notes in the manual suggest this
 for Windows:
 
 system(del name.ext);
 
 --
 Lowell Allen
 
 


-- 

Work: [EMAIL PROTECTED]
Home: [EMAIL PROTECTED]

Web:  www.curvedvision.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Deleting a read-only file (Windows)

2002-06-26 Thread Analysis Solutions

On Wed, Jun 26, 2002 at 11:34:10AM +0100, Neil Freeman wrote:
 
 I'm trying to delete a file using PHP's unlink() function (on Windows). 
 This works fine on writable files but fails when trying to delete 
 read-only files. How can I delete read-only files? Is there a function 
 available to change the permissions?

Untested, but try setting permissions on the file via chmod('name', 0777).

--Dan

-- 
   PHP classes that make web design easier
SQL Solution  |   Layout Solution   |  Form Solution
sqlsolution.info  | layoutsolution.info |  formsolution.info
 T H E   A N A L Y S I S   A N D   S O L U T I O N S   C O M P A N Y
 4015 7 Av #4AJ, Brooklyn NY v: 718-854-0335 f: 718-854-0409

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] Deleting a read-only file (Windows)

2002-06-26 Thread Neil Freeman

According to the manual This function is not implemented on Windows 
platforms. Gave it a go though and it works!

Cheers Dan,

Neil

Analysis  Solutions wrote:
 **
 This Message Was Virus Checked With : SAVI 3.58 May 2002 
 Last Updated 14th June 2002
 **
 
 On Wed, Jun 26, 2002 at 11:34:10AM +0100, Neil Freeman wrote:
 
I'm trying to delete a file using PHP's unlink() function (on Windows). 
This works fine on writable files but fails when trying to delete 
read-only files. How can I delete read-only files? Is there a function 
available to change the permissions?
 
 
 Untested, but try setting permissions on the file via chmod('name', 0777).
 
 --Dan
 


-- 

Work: [EMAIL PROTECTED]
Home: [EMAIL PROTECTED]

Web:  www.curvedvision.com



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php