Wrox Programmer Forums
|
Beginning PHP Beginning-level PHP discussions. More advanced coders should post to the Pro PHP forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Beginning PHP section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 5th, 2004, 03:42 PM
Registered User
 
Join Date: Feb 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Directory Content

I want to select a directory from any where of my HD and print the content of the directory in to file.

How can i do that.

Thanks in adv.

 
Old February 5th, 2004, 05:50 PM
richard.york's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 1,706
Thanks: 0
Thanked 6 Times in 6 Posts
Default

Have a look at:
http://www.php.net/opendir

There is a nice example there of reading directory contents.

If you want to gather the contents of that directory and put it in a txt file, then also have a look at PHP's filesystem functions:
http://www.php.net/manual/en/ref.filesystem.php

<?php
// directory information gathered here.. see opendir() function

$file = fopen("C:\\dir_output.txt", 'w');

if (false === ($bytes = fwrite($file, $dir_stuff)))
{
    echo 'error: unable to write to file, check file permissions.';
}
else
{
    echo 'File containing '.$bytes.' BYTES created.';
}

?>

hth,
Rich

:::::::::::::::::::::::::::::::::
Smiling Souls
http://www.smilingsouls.net
:::::::::::::::::::::::::::::::::
 
Old February 7th, 2004, 06:07 AM
Registered User
 
Join Date: Feb 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks a lot to all of you. And many thanks to quesadilla5 also.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Centering content Europom CSS Cascading Style Sheets 2 February 18th, 2008 06:25 AM
Content management Mike707 Dreamweaver (all versions) 1 September 1st, 2006 04:43 PM
Choosing content depending on content of other ele dsekar_nat XSLT 1 February 27th, 2006 05:58 AM
Listing of Directory Content ram_dwivedi Javascript 3 December 9th, 2005 05:13 AM
Content Alignment Santhi XSLT 3 January 11th, 2005 09:01 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.