Créer une liste de fichiers / dossiers

8

Existe-t-il un moyen rapide de produire une liste de fichiers et dossiers dans un dossier sous Windows XP / Vista dans un fichier texte? Comment?

Andrija Cacanovic
la source

Réponses:

9

Une petite application appelée Liste de fichiers devrait faire le travail bien pour vous si vous voulez quelque chose d'un peu plus puissant que dir /s > files.txt

Du README:

FileList is a command line utility that produces a list of files of the given
path in the CSV format, which can be imported in a spreadsheet or database.
The list includes the file name, the size, the path, the last access and change
date, etc. Supported Windows versions: Windows 200*/XP/Vista

Usage:

 FILELIST [/OPTION] [/FILTER pattern1;pattern2;...] [/NOHEADER]
          Path [>list.csv]

/NOHEADER   Leaves out the column headers from the output.

/ATTRIBUTES Includes a column with the attributes that are set for each file.

/OWNERS     Adds a column that contains the owner of each file. Querying the
            file owner is unfortunately a slow operation in a Windows domain,
            this is why file owners are turned off by default. USing this option
            will significantly slow down the generation of the list.

/AUTHORS    Additionally extracts name of the author from MS Office documents.
            Do not confuse the author with the owner. The owner is listed in
            an extra column by default. This switch slows down the creation of
            the list.

/LASTSAVEDATE Additionally extracts the last save date from MS Office documents.

/MD5        Includes a column with the MD5 checksum of each file.

/FILTER     Allows to specify one or more filters, separated with semicolons.
            The wildcards '*' and '?' may be used.

Using ">" the output can be redirected to a file.


INSTALLATION
~~~~~~~~~~~~
Just place FileList.exe where you want, we recommend your Windows folder.


TIPS & ANNOTATIONS
~~~~~~~~~~~~~~~~~~
* FileList uses the list separator that is set in the Control Panel of Windows.
* Using the extension .CSV for the output file enables you to open the file
  in Excel with a double click in the Explorer.
* The Windows "at" command can be used to schedule the creation of lists with
  FileList. The following command creates a list of all mp3 files including
  their owners every monday night:
  at 00:01  /EVERY:m "C:\path\to\filelist.exe" /OWNER /FILTER *.mp3 c:\ ^>output.txt
Charles Roper
la source
6

De quels détails avez-vous besoin? En particulier, que voulez-vous qu'il fasse

dir /s > files.txt

n'accomplit pas?

Jon Skeet
la source
2

Utilisation de PowerShell:

dir > filename

ou, pour récursif

dir -r > filename

Si tu veux, *.foo fichiers uniquement:

dir . -r -filter *.foo > filename
Richard
la source
1

Le meilleur que j'ai trouvé pour vous sans utiliser de fichier de commandes est:

dir / B & gt; fichiers.txt

Cela vous donnera tous les noms des fichiers et des répertoires du dossier en cours, mais pour extraire la taille des fichiers sans obtenir les informations de temps, il vous faudra un fichier de commandes OU vous aurez besoin d'installer Windows. version de sed, et l’utilisez pour éditer les lignes (en les mettant en pipeline).

Lance Roberts
la source
0
tree C: /F >> log.txt  

Donne une vue légèrement plus utile dépend vraiment de ce que vous devez être capable de faire après.

Keith Bell
la source