Post

Replies

Boosts

Views

Activity

Comment on Catalyst document folder does not exist
This worked for me: NSFileManager *fileManager = [NSFileManager defaultManager];     NSURL *directoryURL = [fileManager URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];     NSArray *urls = [fileManager contentsOfDirectoryAtURL:directoryURL includingPropertiesForKeys:[NSArray arrayWithObjects:NSURLNameKey, NSURLIsDirectoryKey, NSURLContentModificationDateKey, nil] options:NSDirectoryEnumerationSkipsHiddenFiles error:nil];     NSLog(@"%@",urls);
Topic: App & System Services SubTopic: General Tags:
Dec ’21
Comment on After upgrade to Big Sur git stopped working
Thanks, you saved the day!
Replies
Boosts
Views
Activity
Apr ’22
Comment on Catalyst document folder does not exist
This worked for me: NSFileManager *fileManager = [NSFileManager defaultManager];     NSURL *directoryURL = [fileManager URLForDirectory:NSDocumentDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];     NSArray *urls = [fileManager contentsOfDirectoryAtURL:directoryURL includingPropertiesForKeys:[NSArray arrayWithObjects:NSURLNameKey, NSURLIsDirectoryKey, NSURLContentModificationDateKey, nil] options:NSDirectoryEnumerationSkipsHiddenFiles error:nil];     NSLog(@"%@",urls);
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21