Giter VIP home page Giter VIP logo

Comments (5)

Sam-Spencer avatar Sam-Spencer commented on June 6, 2024

@andysavage I'll try to add a property / method for this in the next update. However, right now, to get a list of the files in iCloud just manually fetch changes from iCloud using the following method:

[iCloud updateFilesWithDelegate:self]

The delegate method below is then fired and will pass an NSMutableArray of all the files (and their names) stored in iCloud.

- (void)iCloudFilesDidChange:(NSMutableArray *)files withNewFileNames:(NSMutableArray *)fileNames

This delegate method is also fired automatically when changes are made to the documents in iCloud. You should use this method to store and save the list of documents in iCloud, in addition to updating any UI objects.

from iclouddocumentsync.

AlexMxm avatar AlexMxm commented on June 6, 2024

try:
NSURL *folderURL = [[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil];
NSURL *fileURL = [folderURL URLByAppendingPathComponent:@"Documents"];
NSArray *directoryContent = [[NSFileManager defaultManager] contentsOfDirectoryAtURL:fileURL includingPropertiesForKeys:nil options:0 error:nil];

from iclouddocumentsync.

hongkongkiwi avatar hongkongkiwi commented on June 6, 2024

Thank you, both of those answers make sense. I think it would be great to roll @AlexMxm's answer up into a method, getCloudFileList or something like that.

Although it my case, it's okay to trigger updates, but it's not always desirable to do this.

from iclouddocumentsync.

Sam-Spencer avatar Sam-Spencer commented on June 6, 2024

@andysavage For now, just use the work-around I provided. However in the next update I will add a getFileList method which returns an array of files stored in iCloud (using the code provided by @AlexMxm )

from iclouddocumentsync.

Sam-Spencer avatar Sam-Spencer commented on June 6, 2024

Fixed in commit be69e02. Version 6.2.

from iclouddocumentsync.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.