Results 1 to 6 of 6

Thread: index directory

  1. #1
    VM0824's Avatar Yea Watever
    Join Date
    Jun 2003
    Posts
    79
    how can i get an index of a directory, its subdirectories, and the files in them

  2. Software & Hardware   -   #2
    Snee's Avatar Error xɐʇuʎs BT Rep: +1
    Join Date
    Sep 2003
    Location
    on something.
    Age
    44
    Posts
    17,985
    What do you need it for?

    If you are going to send it to someone or so you can always create a checksum for it

  3. Software & Hardware   -   #3
    VM0824's Avatar Yea Watever
    Join Date
    Jun 2003
    Posts
    79
    i just want to make a list of files and directories they're in

  4. Software & Hardware   -   #4
    Quote Originally Posted by VM0824
    i just want to make a list of files and directories they're in

    In the command prompt:

    Code:
    dir /b /s >list.txt

  5. Software & Hardware   -   #5
    you could also use
    Code:
    tree /f /a >list.txt
    There are 10 types of people in the world those who understand binary and those who dont

  6. Software & Hardware   -   #6
    VM0824's Avatar Yea Watever
    Join Date
    Jun 2003
    Posts
    79
    wow that tree thing is really awesome...thx much

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
  •