vote up 0 vote down star

I want to browse all folders on my computer without using opendir(), in PHP.

flag

5 Answers

vote up 3 vote down

I think I managed to extract the real question out of the comments: What you actually want is to provide an upload of multiple files.

Answer: No this is not possible with PHP, since it is executed by the server, not by the browser. PHP can give you folders on the server, not on the machine of the user. If you want to upload multiple files in a single step, you should use flash, javascript or something similar.

link|flag
vote up 1 vote down

Why wouldn't you want to use the function that's actually provided to do what you want?

link|flag
well it restricts me to a single path and everything below – seeming Mar 18 at 9:46
just start at the root and make a recursive function then. See: fr.php.net/manual/fr/… – Julian Aubourg Mar 18 at 10:26
vote up 1 vote down

In one of the comments, seeming says:

i want the user to select couple of files and upload rather than having multiple upload boxes. why are people downvoting this question?

Well, it is because your question is unclear and it is impossible to answer without the context of multiple file uploads.

The answer is: you can't do that with PHP. PHP runs serverside, so it can only give you a list of all the folders on the server; not the folders on the client side.

So the solution you need will either be

  • a Java-Applet (Facebook uses this for multiple file uploads)
  • or Flash/Flex (Gmail multiple file upload)
link|flag
vote up 0 vote down

The result will be a very ugly combination of glob() and stat(). Is there some reason you can't work with opendir() and friends?

Edit:

If PHP does not have suitable permissions to access everything you want to see, using another function is not going to help.

What (exactly) are you trying to do?

link|flag
well it restricts me to a single path and everything below, and why friends, didnt get that bit – seeming Mar 18 at 9:47
So if the single path is the root directory, what's the issue? When I said 'and friends', I meant readdir, rewinddir, ... – Tim Post Mar 18 at 9:56
Does PHP not have suitable permissions to access all of the directories that you want to see / manipulate? What OS are you using? – Tim Post Mar 18 at 9:57
development in windows, production is Linux let me just rephrase my awkwardly phrased one. i want a directory display as java, which i know is not possible with php, therefore have to get it done programmatically. – seeming Mar 18 at 10:01
vote up 0 vote down

Why don't you use the following?

opendir(DIRECTORY_SEPARATOR);
link|flag
the idea is something like the photo upload of facebook – seeming Mar 18 at 10:25
So you want to list the filesystem of the user? That's not possible with PHP. – Ward Werbrouck Mar 18 at 10:29
I don't know anything on facebook but I don't think they are allowing others to see all folders on the server. Or do you mean you want the user of your site to upload something? – soulmerge Mar 18 at 10:31
i want the user to select couple of files and upload rather than having multiple upload boxes. why are people downvoting this question? – seeming Mar 18 at 11:19
Because you stated it incorrectly. Try editing your question adding this latest comment of yours. – Seb Mar 18 at 13:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.