Giter Site home page Giter Site logo

Comments (5)

halgatewood avatar halgatewood commented on August 9, 2024

It should look like this if you want to go down a level:

$items = scandir( dirname(__FILE__) . '/../foldername' );

And up a level:

$items = scandir( dirname(__FILE__) . '/foldername' );

from file-directory-list.

coolshrimp avatar coolshrimp commented on August 9, 2024

im having same problem.

works fine in same folder but not in another.

I Tried the suggested:
$items = scandir( dirname(__FILE__) . '/../foldername' );

the folder and files from the other directory show up but i get errors:
Warning: filesize(): stat failed Warning: filemtime(): stat failed for

http://puu.sh/tWbix/c76991b61a.png

from file-directory-list.

coolshrimp avatar coolshrimp commented on August 9, 2024

root
-pdf
--files
---2017
---2016
---Coming Soon.pdf
-pages
--fileviewer
---Filebrowserscript.html

this is my file layout so i used:
$items = scandir( dirname(__FILE__) . '/../../pdf/files' );
and also tried with no luck:
$items = scandir( dirname(dirname(dirname(__FILE__))) .'/pdf/files' );

from file-directory-list.

halgatewood avatar halgatewood commented on August 9, 2024

@coolshrimp if your index.php file is in the root, you would want to do:
$items = scandir( dirname(__FILE__) . '/pdf/files' );

from file-directory-list.

Wolfenk avatar Wolfenk commented on August 9, 2024

Correct way to do that on PHP 7:
$items = scandir( dirname(__FILE__, 2) );

You can change "2" for your desired folder level. It goes one level up when you increase 1. There will be errors for "filemtime()" and "filesize()" when you change it. Don't know how to fix them.

from file-directory-list.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.