Hello,
I am creating a directory using QDir mkdir().
How to set hidden attributes to the directory using QT?
I know how to set attributes in Symbian c++.
Thanks,
Hello,
I am creating a directory using QDir mkdir().
How to set hidden attributes to the directory using QT?
I know how to set attributes in Symbian c++.
Thanks,
I believe there is no API in Qt to change hidden attribute using Qt API, you should use native platform API to do that.
I **think** this would work -- haven't tried it yet:Code:#include <f32file.h> // Needs efsrv.lib ... RFs fSession; fSession.Connect(); fSession.SetAtt(filePathAndName, KEntryAttHidden, 0); fSession.Close();