Aqui está um método usando o Powershell:
gci -recurse . | where {$_.Name -match "[^\u0000-\u007F]"}
Existe alguma maneira fácil de encontrar todos os arquivos em um determinado diretório que possuam caracteres não-ASCII (isto é, Unicode) no nome do arquivo? Estou executando o Windows XP x64 SP2, sistema de arquivos NTFS.
Aqui está um método usando o Powershell:
gci -recurse . | where {$_.Name -match "[^\u0000-\u007F]"}
Acabei de escrever um script Python para isso. Postar no caso de ajudar alguém. Sinta-se à vontade para ir ao StackOverflow.
import sys, os
def main(argv):
if len(argv) != 2:
raise Exception('Syntax: FindUnicodeFiles.py <directory>')
startdir = argv[1]
if not os.path.isdir(startdir):
raise Exception('"%s" is not a directory' % startdir)
for r in recurse_breadth_first(startdir, is_unicode_filename):
print(r)
def recurse_breadth_first(dirpath, test_func):
namesandpaths = [(f, os.path.join(dirpath, f)) for f in os.listdir(dirpath)]
for (name, path) in namesandpaths:
if test_func(name):
yield path
for (_, path) in namesandpaths:
if os.path.isdir(path):
for r in recurse_breadth_first(path, test_func):
yield r
def is_unicode_filename(filename):
return any(ord(c) >= 0x7F for c in filename)
if __name__ == '__main__':
main(sys.argv)