On 27/08/2015 at 06:20, xxxxxxxx wrote:
i read a directory via this function:
def listdir(path) :
dd = []
files = (file for file in os.listdir(path)
if os.path.isfile(os.path.join(path, file)))
for item in files:
dd.append(item)
return dd
if there an ü ä ö in the filename the string got cuttet like this:
13_00_M_Jonas.tif < 13_00_Müller_Jonas.tif