Is it possible to count files under a directory when you’re only reading to https url? or only possible through ftp?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Only through
ftphttp&httpsare protocols to view web applications. Features likedirectory listingare done from server, not through such protocols.Explanation in case of php & apache server
When you are using commands like
scandir()to read file and directory, its the server that does the reading for you. not anyhttporhttpslink. The page you browse through such protocols will only deliver the output markup on the page.Through these protocols, all files except server-side files can be delivered on their actual format.