I'm trying to copy an applications entire data directory, I'm using the following su command:
String sBackupData = "cp -rp /data/data/<app-name> /data/sdext2/backup/";
this copies & retains file permissions/ownership, however I am unable to successfully copy the .lib symlink. Any suggestions would be much appreciated.
Thank you.