Python: различия между версиями
Материал из fidoman.ru
Sergey (обсуждение | вклад) |
Sergey (обсуждение | вклад) |
||
Строка 3: | Строка 3: | ||
for a in os.walk('.'): [os.rename(os.path.join(a[0],f), os.path.join(a[0],f.replace(':','='))) if f.find(':')!=-1 else 'ok' for f in a[2]] | for a in os.walk('.'): [os.rename(os.path.join(a[0],f), os.path.join(a[0],f.replace(':','='))) if f.find(':')!=-1 else 'ok' for f in a[2]] | ||
− | use a[1] for folders instead of files | + | use a[1] instead of a[2] for folders instead of files |
Текущая версия на 18:04, 13 января 2023
replace bad character in all filenames in the tree
for a in os.walk('.'): [os.rename(os.path.join(a[0],f), os.path.join(a[0],f.replace(':','='))) if f.find(':')!=-1 else 'ok' for f in a[2]]
use a[1] instead of a[2] for folders instead of files