how to implement searching an XML file in a local directory like c drive of my system and then copying it to my private folder of the project.
Where to implemet all this?
how to implement searching an XML file in a local directory like c drive of my system and then copying it to my private folder of the project.
Where to implemet all this?
For this you can make use of RFs GetDir() function which take the directory path, your wild card match and return you with the listing of files and directories in teh specified directory.
For copying the file from one dir to another you can make use of BaflUtils::CopyFile()
Hope this will help.
ok.Thanks.
So this all has to be done in my ui(handlecommandl()) class or i need to create a seperate file.
It does not "have to be done" at all. You can do it where you need it. For testing purposes you can freely put it in your HandleCommandL (preferably in an explicit statement block, if you want to create the related variables locally).