0
I need to move a file from the system folder to another folder. I have one BD inside the system folder, I want to generate a backup, for that I want to copy the BD.db3 to another folder and then compact it.
My question is how to move the file?
0
I need to move a file from the system folder to another folder. I have one BD inside the system folder, I want to generate a backup, for that I want to copy the BD.db3 to another folder and then compact it.
My question is how to move the file?
2
If someone is also with this doubt follows the link that helped me: http://docwiki.embarcadero.com/CodeExamples/Seattle/en/FileOperations_(Delphi)
uses Androidapi.IOUtils
TFile.Copy(TPath.GetDocumentsPath + PathDelim + 'DADOS1.db3',
GetSharedDownloadsDir + PathDelim + 'DADOS1.db3');
Browser other questions tagged android delphi firemonkey
You are not signed in. Login or sign up in order to post.
Friend, your question is very vague. Where is your difficulty? In moving the file or compressing it? Do not know how to do or is giving some error? Pass on as much information as we can to help you.
– Andrey
See if it’s this what you seek.
– ramaral