1

Мне нужно сделать все файлы в папке Windows 10 строчными

Я выполнил следующую команду, но по некоторым причинам в некоторых файлах все еще есть заглавные буквы

for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")

Как я могу это исправить?

1 ответ1

0

Используйте PowerShell и убедитесь, что ваш $ files var содержит все файлы

#Append -recurse if you want to go recursively, you can also adjust the filter - it gets a list of File objects that match the criteria you set
$files = gci 'C:\WhateverDirectory' -filter '*.*' -File
#This loops through all of the files in $files and renames them.
$files | % {Rename-Item $_ -newname $_.Name.ToLower()}

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .