The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    how to record file directory

    Discussion in 'Windows OS and Software' started by hehe299792458, Feb 2, 2010.

  1. hehe299792458

    hehe299792458 Notebook Deity

    Reputations:
    175
    Messages:
    1,571
    Likes Received:
    0
    Trophy Points:
    55
    I need someway to record all my file structure in a particular drive. Perhaps the software could produce some sort of notepad file with the following: D:\SampleFolder\Folder1\file.doc
    and repeat it for every file?
     
  2. Nebelwand

    Nebelwand Notebook Consultant

    Reputations:
    119
    Messages:
    213
    Likes Received:
    0
    Trophy Points:
    30
    Open a command prompt (cmd.exe), cd to the drive/directory you want, run

    dir /b /s > "%USERPROFILE%\Desktop\output.txt"
     
  3. hehe299792458

    hehe299792458 Notebook Deity

    Reputations:
    175
    Messages:
    1,571
    Likes Received:
    0
    Trophy Points:
    55
    wow. thank a lot. that was very easy.

    one more question - do you know if it's possible to include other attributes such as folder size in the output file?