delphi - How to get "Library" path on actual iOS device -
i using following code app base directory:
// /private/var/mobile/applications/exampleid/example.app/ fappdatadirpath := gethomepath + pathdelim + application.title + '.app' + pathdelim; // /private/var/mobile/applications/exampleid/example.app/library/ fappdatalibrarydirpath := fappdatadirpath + 'library' + pathdelim;
on ios simulator both these paths exist.
however, on ios device fappdatadirpath exists. "library" variation can not created using e.g forcedirectories
what wrong? :(
Comments
Post a Comment