NlMakesis Y-Browser Y-Tasks
hi everybody: i cann't find how to create a directory in sdk. who can tell me, thanks
steve
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
thanks chandantheracer it's ok
Forum posts: 93
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
Forum posts: 9
thanks chandantheracer
it's ok