<< Click to Display Table of Contents >> Navigation: »No topics above this level« Start parameters |
/ADDITIONALCOLUMNS |
Includes a set of comma-separated columns. For accepted columns, see /USECOLUMNS |
/ATTRIBUTEFILTER/A |
Can be used to filter files by their file attributes. Only files which have all the given attributes in common will be found that way (e.g. "/ATTRIBUTEFILTER RS" shows files with attributes "read-only" AND "system file"). All files and folders (*), read-only (R), hidden (H), system (S), folder (D), archive (A), compressed (C), sparse (P), temporary (T), offline (O), reparse point (L), Alternate and encrypted (E), |
/DATEFORMAT |
Allows to specify a format for date values. Available formats are: DATE DATETIMESHORT DATETIMELONG DATETIMEISO TIMESHORT |
/EXCLUDE |
Allows to specify one or more exclusion filters, separated with semicolons. Any path matching any of the filters will be excluded. The wildcards '*' and '?' may be used. Path fragments like *\System32\*.DLL may be used as well. |
/FULLPATH/FP |
Outputs full path of each file instead of separate columns for file name and file path. |
/INCLUDE |
Allows you to specify one or more filters, separated with semicolons. Each path has to match at least one of the filters to be included. The wildcards '*' and '?' may be used. Path fragments like *\System32\*.DLL may be used as well. |
/LISTSEPARATOR/LS |
Allows you to set the character used for separating the columns. By default the list separator from the "Regional Settings" of the Windows Control Panel is used. Add the new list separator character after /LISTSEPARATOR separated by a space. Use TAB to assign the tabulator as separator between columns. When using the tabulator, columns will also be exported without quotes. |
/MAXDATE |
Allows to specify a maximal date for output files. Only files whose last change date is earlier than the input date will be displayed. Use format "yyyy-mm-dd". |
/MAXLEVEL/MAXL |
Only files whose directory level is below or equal to the given value will be displayed. |
/MINDATE/MD |
Allows to specify a minimal date for output files. Only files whose last change date is later than the input date will be displayed. Use format "yyyy-mm-dd". |
/MINLEVEL/MINL |
Only files whose directory level is higher than or equal to the given value will be displayed. |
/MINPATHLENGTH/MP |
Allows to specify a minimum path length. Files whose full path has less characters then the given value will be excluded from the list. |
/MINSIZE/MS |
Allows to specify a minimum file size in Bytes. Files which have a size smaller than the input value will be excluded from the list. |
/NOHEADER |
Leaves out the column headers from the output. |
/NOTITLE |
Omits the first two lines which determine the location but shows the column headers. |
/NOUTF8BOM |
Omits the UTF8-BOM (byte order mark) from the output. |
/PRINTSHELLCOLUMNLIST |
Prints a list of all shell columns available for the specified folder. More information on these columns is available here. |
/USECOLUMNS |
Allows to specify a list of columns and their order to use. Default columns will not be extended, but replaced. Accepted are the following predefined columns and all columns available with the shell (referenced by their canonic name): NAME PATHWITHOUTNAME FULLPATH SIZE ALLOCATED LASTACCESS LASTCHANGE CREATIONDATE FILES FOLDERS EXTENSION AUTHORS LASTSAVEDATE OWNERS DIRLEVEL VERSIONS ATTRIBUTES read-only (R), hidden (H), system (S), folder (D), archive (A), compressed (C), sparse (P), temporary (T), offline (O), reparse point (L), Alternate Data Streams (Z) and encrypted (E). MD5 FRN SHA256 PATHLENGTH Examples FileList.exe /USECOLUMNS NAME,OWNERS,ATTRIBUTES,MD5 . (2) To list the names of all .jpg files and their dimensions (as available with the shell or Windows Explorer column), FileList can be used like this: FileList.exe /USECOLUMNS NAME,System.Image.Dimensions /INCLUDE *.jpg . The 'System' namespace for shell columns is optional, so you may also use FileList.exe /USECOLUMNS NAME,Image.Dimensions /INCLUDE *.jpg . |
The general pattern to use FileList is:
FileList.exe [/OPTION] Path(s)ToScan [> OutputPath\output.txt]
It's also possible to scan computers in the local network by using their names e.g. \\Home, \\PETER, \\SANDRA as path.
Using ">" the output can be redirected to a file. The text file will be encoded in UTF-8 with BOM.
Examples:
FileList.exe /NOHEADER /ADDITIONALCOLUMNS OWNERS /FULLPATH . > C:\OutputFolder\output.txt
FileList.exe /A * C:\ExampleFolder > C:\OutputFolder\output.txt
FileList.exe /A * C:\ExampleFolder2