Use PowerShell and check that your $files var contains all of the files
#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()}
Recent Questions...
ما را در سایت Recent Questions دنبال میکنید
برچسب:
نویسنده: استخدام کار
بازدید: 175
تاريخ: يکشنبه
16 خرداد
1395 ساعت: 4:09