hi,
So this:
Qt Code:
QDir dir; dir.setCurrent(dir.homePath()); dir.mkdir("FromQT");To copy to clipboard, switch view to plain text mode
Will create a directory in your Mac home that is accessible by other?
Under non-Windows operating systems the HOME environment variable is used if it exists, otherwise the path returned by the rootPath()
rootPath: For Unix operating systems this returns "/". For Windows file systems this normally returns "c:/".
Check if you get a proper path for homePath().
Carlos.
Bookmarks