Results 1 to 5 of 5

Thread: Show all files directories alphabetically with PHP

  1. #1
    Join Date
    Jan 2009
    Posts
    42

    Show all files directories alphabetically with PHP

    Show all files directories alphabetically with PHP, Is that possible? I need to list the files of a directory on my webpage. How do i do it? Please help me with the coding... I'm new to PHP... Thanks in advance...

  2. #2
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Show all files directories alphabetically with PHP

    Well you must be clear with the basics first. I'm not sure but scandir function will do the work for you... All the best! If any problem, do post back!

  3. #3
    Join Date
    Jan 2009
    Posts
    42

    Re: Show all files directories alphabetically with PHP

    Can you please help me with a sample code? May be i would be able to manipulate it with what i require.. Please help the noob...

  4. #4
    Join Date
    Oct 2005
    Posts
    2,393

    Re: Show all files directories alphabetically with PHP

    Here is a sample code :
    Code:
    <?php
    $dir = "/tmp";
    $dh = opendir($dir);
    while (false !== ($filename = readdir($dh))) {
    $files[] = $filename;
    }
    
    sort($files);
    
    print_r($files);
    
    rsort($files);
    
    print_r($files);
    
    ?>

  5. #5
    Join Date
    Feb 2008
    Posts
    1,852

    Re: Show all files directories alphabetically with PHP

    One more sample code :
    Code:
    <?php
    $dir    = '/tmp';
    $files1 = scandir($dir);
    $files2 = scandir($dir, 1);
    
    print_r($files1);
    print_r($files2);
    ?>

Similar Threads

  1. How to transfer multiple files or directories
    By Saura in forum Technology & Internet
    Replies: 5
    Last Post: 07-03-2010, 03:19 AM
  2. Replies: 4
    Last Post: 09-02-2010, 05:40 PM
  3. Distinguishing between files and directories
    By Flacos in forum Software Development
    Replies: 3
    Last Post: 05-12-2009, 04:13 PM
  4. List all Files and Directories in a Directory
    By Samir_1 in forum Software Development
    Replies: 0
    Last Post: 08-12-2008, 07:32 PM
  5. How to Secure NTFS files and directories
    By T.J. in forum Tips & Tweaks
    Replies: 0
    Last Post: 11-11-2008, 02:26 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,148,434.00928 seconds with 16 queries