QString::fromUtf8() will most likely work since most Linux systems have been using that codec for years now.
Alternatively use QString::fromLocal8Bit() which uses the system's locale information to determine the currently used encoding
Also have a look at QFile::decodeName()
Cheers,
_
great, thanks to both of you, I used QString::fromLocal8Bit()
Bookmarks