GithubHelp home page GithubHelp logo

Comments (3)

damian-kolakowski avatar damian-kolakowski commented on May 7, 2024 1

hi @swierpa :) please have a look at the sample code below:

class ViewController: UIViewController {

    private var server: HttpServer?

    override func viewDidLoad() {
        super.viewDidLoad()

        let server = HttpServer();

        server.get["/upload"] = { r in
            return .OK(.Html("<form method=\"POST\" action=\"/upload\" enctype=\"multipart/form-data\">" +
                "<input name=\"my_file\" type=\"file\"/>" +
                "<button type=\"submit\">Send File</button>" +
            "</form>"))
        }
        server.post["/upload"] = { r in
            if let myFileMultipart = r.parseMultiPartFormData().filter({ $0.name == "my_file" }).first {
                guard let documentsUrl = NSFileManager.defaultManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask).first else {
                    return .InternalServerError
                }
                let data: NSData = myFileMultipart.body.withUnsafeBufferPointer { pointer in
                    return NSData(bytes: pointer.baseAddress, length: myFileMultipart.body.count)
                }
                guard let fileSaveUrl = NSURL(string: "name_for_file.txt", relativeToURL: documentsUrl) else {
                    return .InternalServerError
                }
                print(fileSaveUrl)
                data.writeToURL(fileSaveUrl, atomically: true)
                return .OK(.Html("Your file has been uploaded !"))
            }
            return .InternalServerError
        }

        do {
            try server.start(9099)
        } catch {
            print("Server start error: \(error)")
        }
        self.server = server
    }
}

best,
dk

from swifter.

theRealGupta avatar theRealGupta commented on May 7, 2024

Hi @glock45
Thank you for the solution its help a lot to me. but your solution is outdated because of the swift update.
so I did some Changes in your solution. Please verify that.

server.post["/upload"] = { r in
        if let multipart = r.parseMultiPartFormData().filter({ $0.name == "newfile" }).first {
            guard let documentsUrl = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first else {
                return .internalServerError
            }
            let data: NSData = multipart.body.withUnsafeBufferPointer { pointer in
                return NSData(bytes: pointer.baseAddress, length: multipart.body.count)
            }
            
            guard let fileSaveUrl = NSURL(string: multipart.fileName ?? "NoNameFile.txt", relativeTo: documentsUrl) else {
                return .internalServerError
            }
            print(fileSaveUrl)
            data.write(to: fileSaveUrl as URL, atomically: true)
            return HttpResponse.ok(.html("Your file has been uploaded !"))
        }
        return .internalServerError
    }

Thank you,
Anup Gupta

from swifter.

theRealGupta avatar theRealGupta commented on May 7, 2024

How to Upload Folder ???

I am able to upload a single file successfully.
selection of the folder and and in server.post["/upload"] I am geeting all files of folder.
but unable to upload folder.

from swifter.

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.