Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PHP & opendir ('X:\');

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Help please!!

I want to get CDROM filelist, but opendir don't work!!!
When I try this: opendir('F:\'); (CDROM is inserted :) )
PHP gives error:
PHP Warning: OpenDir: Invalid argument (errno 22) in c:\apache\htdocs\tester\test.php on line 90

opendir works only if the parameter is C:
Is this some kind PHP bug????

How can I then get cdrom filelist!

System is: WinNT4.0+ Apache + PHP4.0.6

THNX!
 
Its because of how you have your backslash. The backslash is escaping the ', which triggers PHP into saying you have an invalid argument.

Try this:

[tt]
<?php

$dir = opendir(&quot;F:/&quot;);
while ($contents = readdir($dir)) {
print $contents.&quot;<br>&quot;;
}
closedir($dir);

?>
[/tt]

Hope this helps.

-Vic vic cherubini
krs-one@cnunited.com
 
Nope!
:-(

Same error!!!!
OpenDir: Invalid argument (errno 22) in c:\apache\htdocs\tester\0.php on line 3

line 3 is line with opendir(...)!!!!

Looks like this is some kind PHP bug or is disabled by security reasons!!! :-(

Maybe this wont work only on Win NT! I dont tried this on other Windows computers!!! Maybe it works with Win9x???

Unhappy muhv!!!!
 
An attitude will not help...

Anyway, I am running Win2k and it works fine. Perhaps the CD that is in the CD-ROM is the one not functioning.

Post the exact code that you have.

-Vic vic cherubini
krs-one@cnunited.com
 
Thanx!

Looks like this is only my version of WinNT problem!!!
On other computers this works fine!!!

This is some kind NT security problem, but my NT dont have security page on cdrom properties to enable access to all!!!

Sad but true!!! :-(

Thanx to all!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top