unfortunately I didn't found an app to mirror several directories from the internal storage to the sdcard (what is no problem for several clouds like 'foldersync' or 'dropsync'). Best choyce seems to be 'Auto Transfer'. This app copies all changed or new files, but it won't delete files from the target which are deleted on the source-directory.
Of cause, I know it's possible to create something nice with automagic, perhaps there is an easy solution?
At the moment I try to compare directories:
Code: Select all
{source_list} contains:
[.ttxfolder, Apk, Applications, Automagic, Kalender, Kontakte, READ-Dropsync.txt, READ-Restore.txt, Timesheet]
{target_list} contains:
[.ttxfolder, Apk, Applications, Automagic, Kalender, Kontakte, READ-Backups.txt, READ-Dropsync.txt, Test, Timesheet]
Now I would like to extract the Items in the target, which are not in the source for deleting, in this excemple 'Test':
items_to_delete = removeAllElementValues(target_list,source_list);
{items_to_delete} contains:
[.ttxfolder, Apk, Applications, Automagic, Kalender, Kontakte, READ-Backups.txt, READ-Dropsync.txt, Test, Timesheet]
...but it should contain only 'Test' !?
Btw.. it's so absolute hard typing code on a handset...