У меня есть папка со списком папок. Без ручного просмотра списка и ввода имени каждой папки, есть ли способ получить новый список папок (или имен файлов в этом отношении) в этом каталоге с разделителями строк?
2 ответа
1
Если я правильно понимаю ваш вопрос, это довольно просто из командной строки:
- Откройте командную строку (Win+R, затем введите "cmd" и нажмите Enter) (или просто найдите "cmd" в поиске Windows)
- Перейдите к рассматриваемой папке (например,
cd c:\My\Directory
, вы можете скопировать ее из окна своего проводника) - Используйте команду
dir
и перенаправьте вывод в файл:dir > myfile.txt
Это даст вам список всего в папке. Смотрите здесь статью MS KB
1
Если вы хотите новый список всех папок, вы можете использовать консоль. «CD» в вашу папку и затем используйте:
dir /AD /B /S /O:N > folderlist.txt
Это отображает список каталогов и подкаталогов в данном корневом каталоге. Выходной файл folderlist.txt
будет находиться в родительском каталоге
/AD
перечисляет только каталоги/B
подавляет ненужную информацию заголовка/S
ищет подкаталоги- Сортирует вывод по алфавиту
Полная помощь от cmd> dir /?
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N] [/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4] [drive:][path][filename] Specifies drive, directory, and/or files to list. /A Displays files with specified attributes. attributes D Directories R Read-only files H Hidden files A Files ready for archiving S System files I Not content indexed files L Reparse Points - Prefix meaning not /B Uses bare format (no heading information or summary). /C Display the thousand separator in file sizes. This is the default. Use /-C to disable display of separator. /D Same as wide but files are list sorted by column. /L Uses lowercase. /N New long list format where filenames are on the far right. /O List by files in sorted order. sortorder N By name (alphabetic) S By size (smallest first) E By extension (alphabetic) D By date/time (oldest first) G Group directories first - Prefix to reverse order /P Pauses after each screenful of information. /Q Display the owner of the file. /R Display alternate data streams of the file. /S Displays files in specified directory and all subdirectories. /T Controls which time field displayed or used for sorting timefield C Creation A Last Access W Last Written /W Uses wide list format. /X This displays the short names generated for non-8dot3 file names. The format is that of /N with the short name inserted before the long name. If no short name is present, blanks are displayed in its place. /4 Displays four-digit years