GithubHelp home page GithubHelp logo

Comments (11)

Esqarrouth avatar Esqarrouth commented on August 19, 2024

I haven't seen that in the code base except a small part where its commented out?

from ezswiftextensions.

piv199 avatar piv199 commented on August 19, 2024

Well, sorry, I haven't understand a bit.

http://stackoverflow.com/questions/24055146/how-to-find-nsdocumentdirectory-in-swift

The first link found searching 'swift get documents directory'. If you need to get a url to your application document's directory you need to write NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0].

Many of users who need to write something onto disk or read from it - create an extension for this boilerplate code. Also this code returns a String, not NSURL. So let doc = NSURL(string: NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0]) the whole crap.

Even if you create a project with CoreData, Apple creates a method that do the same, returns the path to document's directory.

from ezswiftextensions.

Esqarrouth avatar Esqarrouth commented on August 19, 2024

Would this work for both ios and osx?

from ezswiftextensions.

piv199 avatar piv199 commented on August 19, 2024

@goktugyil Yes we could do this both for iOS and OS X

from ezswiftextensions.

Esqarrouth avatar Esqarrouth commented on August 19, 2024

Sounds good in that case

from ezswiftextensions.

piv199 avatar piv199 commented on August 19, 2024

I'll add it

from ezswiftextensions.

piv199 avatar piv199 commented on August 19, 2024

@goktugyil

Have 3 different ideas what to do
The first is to add methods to NSFileManager instance, it's clear and everybody can remember it

let fileManager = NSFileManager.defaultManager()
fileManager.path(.Documents) -> String
fileManager.url(.Documents) -> NSURL

The second one is to add to NSURL and String, but not the best solution I think

NSURL.directory(.Documents)
String.path(.Documents)

The third is to create a separate class and give it some necessary methods (like enumerate files, has file, create/remove file). So something similar to NSFileManager (just call its methods). But it might be out of scope for EZSwiftExtensions, thus it's not an extension.

Directory(.Documents) -> Directory
Directory(url: NSURL) -> Directory
Directory(path: String) -> Directory

Or do anybody have some ideas how to implement it in the right way?

from ezswiftextensions.

Esqarrouth avatar Esqarrouth commented on August 19, 2024

I haven't checked but probably there are other good open source libraries that work on this. Most likely they will seem like no3. How about getting ideas and features from there and implement them like no1?

from ezswiftextensions.

lfarah avatar lfarah commented on August 19, 2024

@goktugyil any updates on this?

from ezswiftextensions.

Esqarrouth avatar Esqarrouth commented on August 19, 2024

@lfarah I didn't have a chance to work with documents in a long time and not familiar enough with the current conventions.

https://github.com/goktugyil/EZSwiftExtensions/blob/4a66ff4ae759cdfdde599cdf98a60da8d1145823/EZSwiftExtensionsTests/NSURLTests.swift

Also some commented code here.

from ezswiftextensions.

piv199 avatar piv199 commented on August 19, 2024

Okay, so we need to add base functionality for directory, and if more advanced than use special library...

from ezswiftextensions.

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.