I'm trying to open a file from Files iPad app after a user chose to open a file with my app
In iOS 16 or before I do
Anyone know how to do it ?
thanks
In iOS 16 or before I do
but on iOS 17 there is not Documents/Inbox directory.NSString *pathForFile = [NSHomeDirectory() stringByAppendingPathComponent"Documents/Inbox/myfile.customFile"];
if ([fileManager fileExistsAtPathathForFile])
{
// Do something
}
Anyone know how to do it ?
thanks