vote up 0 vote down star
1

For example in windows explorer?

flag

71% accept rate
2  
Using any particular language/tool? – Brian Agnew May 31 at 16:14
2  
In what sense? Do you want a context menu link to copy the file name? Or a script to do it, and print out the results? – Kazar May 31 at 16:14
Every time the contents of a shared folder on my computer is changed, I want an email to be sent to everyone with whom I have shared the folder. – Geoffrey van Wyk May 31 at 18:26

closed as not a real question by karim79, Rob, Chris Ballance, Henrik Paul, John Saunders May 31 at 21:07

7 Answers

vote up 8 vote down check

In the absence of any further information,

c:> cd directory
c:> dir > files.txt

to write a list of files to a text file (files.txt)

EDIT: dir /b to simply generate the bare file names

link|flag
1  
"dir /b >files-names.txt" <- '/b' stands for "bare listing" – Ape-inago May 31 at 17:00
Doh. Noted. Thanks – Brian Agnew May 31 at 17:02
Thanks, Brian. So this cannot be done in Windows, only in DOS? – Geoffrey van Wyk May 31 at 18:22
Just open a command prompt in Windows (Start->Run... and launch 'cmd.exe') – Brian Agnew May 31 at 18:24
vote up 1 vote down

If we're talking C# then the following will return the full path in an array of strings:

string[] files = Directory.GetFiles(directory);

To get the filenames:

foreach (string file in files)
{
    Console.WriteLine(Path.GetFileName(file));
}
link|flag
vote up 3 vote down

For just the file names:

c:\dir /b > files.txt
link|flag
vote up 2 vote down

For a unix environment, cd mydirectory && ls > filelist.txt

link|flag
note: ls is smart enough to know when it's being piped. so it doesn't give the normal information that it would if you ran it directly from the console. – Ape-inago May 31 at 17:01
vote up 0 vote down

In python! It takes the path as an arguement.

import os
import sys

if __name__ == '__main__':
    path = sys.argv[1]

    dir = os.listdir(path)
    for fname in dir:
        print fname
link|flag
vote up 0 vote down

To add some additional generic flavor, in a PHP one-liner, how about:

<?php file_put_contents("listing.txt", implode(PHP_EOL, glob('*')));
link|flag
vote up 2 vote down

I'm not sure if you care about distinguishing files and directories or not. The following will write the names of files in the current directory to listing.txt.

In DOS:

C:\> IF EXIST listing.txt ERASE listing.txt
C:\> FOR %I IN (*.*) DO (ECHO %~nxI) >>listing.txt

In any Bourne-based shell:

machine$ rm listing.txt
machine$ for f in *; do [ -f $f ] && echo "$f" >> listing.txt ; done

or:

machine$ find . -type f -depth 1 -print > listing.txt
link|flag
+1 for batch stuffs. – Ape-inago May 31 at 17:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.