For now i corrected all none ASCII file names on my shares to stop Enigma from crashing when browsing these folders.
And to find them more easily i used a small python script that scans its own and all sub folders and outputs all none ASCII filenames, so you know what to correct.
import os def is_ascii(s): return all(ord(c) < 128 for c in s) def check_filenames(directory): non_ascii_files = [] for root, dirs, files in os.walk(directory): for filename in files: if not is_ascii(filename): non_ascii_files.append(os.path.join(root, filename)) return non_ascii_files # Get the current directory current_directory = os.getcwd() non_ascii_files = check_filenames(current_directory) if non_ascii_files: print("Files with non-ASCII characters:") for file in non_ascii_files: print(file) else: print("All filenames contain only ASCII characters.")
Still hope it can be fixed in the next release though