how to create a directory use symbian c++ api

Login to reply to this topic.
Sat, 2007-09-08 17:29
Joined: 2007-07-27
Forum posts: 9

hi everybody:
i cann't find how to create a directory in sdk. who can tell me, thanks

steve


Sat, 2007-09-08 18:11
Joined: 2007-06-20
Forum posts: 93
Re: how to create a directory use symbian c++ api

hi,
Search for MkDirAll in ur SDK ... u find there method for creating Directory.
U use this to simply create a Directory suppose named of Steve:-

RFs fs;
User::LeaveIfError(fs.Connect());
_LIT(KCSteve,"C:\\Steve\\");
fs.MkDirAll(KCSteve);
fs.Close();


Thanks & Regards,
C Singh

Sun, 2007-09-09 09:11
Joined: 2007-07-27
Forum posts: 9
Re: how to create a directory use symbian c++ api

thanks chandantheracer
it's ok

  • Login to reply to this topic.