Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/swift/20.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Swift 设置Alamofire自定义目标文件名,而不是使用suggestedDownloadDestination_Swift_Download_Swift3_Alamofire_Nsfilemanager - Fatal编程技术网

Swift 设置Alamofire自定义目标文件名,而不是使用suggestedDownloadDestination

Swift 设置Alamofire自定义目标文件名,而不是使用suggestedDownloadDestination,swift,download,swift3,alamofire,nsfilemanager,Swift,Download,Swift3,Alamofire,Nsfilemanager,在我的表格视图中有许多发票文件列表,每个单元格中都有许多下载按钮。当我单击其中一个按钮时,它将下载发票文件。但是,问题是服务器响应建议在我下载的每个文件中使用“invoice.pdf”文件名。因此,在下载文件后保存到文档之前,我需要手动编辑文件名。因此,如何在下载成功后手动编辑文件名,并将其保存到文档中作为临时URL,而无需使用Alamofire.Request.suggestedDownloadDestination 这是我的下载功能 func downloadInvoice(invoice:

在我的表格视图中有许多发票文件列表,每个单元格中都有许多下载按钮。当我单击其中一个按钮时,它将下载发票文件。但是,问题是服务器响应建议在我下载的每个文件中使用“invoice.pdf”文件名。因此,在下载文件后保存到文档之前,我需要手动编辑文件名。因此,如何在下载成功后手动编辑文件名,并将其保存到文档中作为临时URL,而无需使用
Alamofire.Request.suggestedDownloadDestination

这是我的下载功能

func downloadInvoice(invoice: Invoice, completionHandler: (Double?, NSError?) -> Void) {

guard isInvoiceDownloaded(invoice) == false else {
  completionHandler(1.0, nil) // already have it
  return
}

let params = [
    "AccessToken" : “xadijdiwjad12121”]

// Can’t use the destination file anymore because my server only return one file name “invoice.pdf” no matter which file i gonna download
// So I have to manually edit my file name which i saved after it was downloaded.    
let destination = Alamofire.Request.suggestedDownloadDestination(directory: .DocumentDirectory, domain: .UserDomainMask)
// So I have to save file name like that ““2016_04_02_car_invoice_10021.pdf” [Date_car_invoice_timestamp(Long).pdf]
// Please look comment on tableView code

Alamofire.Manager.sharedInstance.session.configuration.HTTPAdditionalHeaders?.updateValue("application/pdf",forKey: "Content-Type")

Alamofire.download(.POST, invoice.url,parameters:params, destination: destination)
      .progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in
        print(totalBytesRead)
        dispatch_async(dispatch_get_main_queue()) {
          let progress = Double(totalBytesRead) / Double(totalBytesExpectedToRead)
          completionHandler(progress, nil)
        }
      }
      .responseString { response in
        print(response.result.error)
        completionHandler(nil, response.result.error)
    }
  }
这是表格视图,它将检查下载的文件,并在单击时显示在“打开”功能中

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if let invoice = dataController.invoices?[indexPath.row] {
  dataController.downloadInvoice(invoice) { progress, error in
    // TODO: handle error
    print(progress)
    print(error)
    if (progress < 1.0) {
      if let cell = self.tableView.cellForRowAtIndexPath(indexPath), invoiceCell = cell as? InvoiceCell, progressValue = progress {
        invoiceCell.progressBar.hidden = false
        invoiceCell.progressBar.progress = Float(progressValue)
        invoiceCell.setNeedsDisplay()
      }
    }
    if (progress == 1.0) {
    // Here where i gonna get the downloaded file name from my model.
        // invoice.filename = (Assume “2016_04_02_car_invoice_10021”)
        if let filename = invoice.filename{
            let paths = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)
            let docs = paths[0]
            let pathURL = NSURL(fileURLWithPath: docs, isDirectory: true)
            let fileURL = NSURL(fileURLWithPath: filename, isDirectory: false, relativeToURL: pathURL)

            self.docController = UIDocumentInteractionController(URL: fileURL)
            self.docController?.delegate = self
            if let cell = self.tableView.cellForRowAtIndexPath(indexPath) {
                self.docController?.presentOptionsMenuFromRect(cell.frame, inView: self.tableView, animated: true)
                if let invoiceCell = cell as? InvoiceCell {
                    invoiceCell.accessoryType = .Checkmark
                    invoiceCell.setNeedsDisplay()
                }
            }
        }
    }
  }
}
}

因为它使用response.suggestedfilename。我想在选定的表视图单元格数据上手动保存文件名。有什么帮助吗?请不要介意我在问题中发布了一些代码,因为我想让每个人都清楚地看到它。

目的地的类型是
(NSURL,NSHTTPURLRResponse)->NSURL
。所以你可以这样做

 Alamofire.download(.POST, invoice.url,parameters:params, destination: { (url, response) -> NSURL in

    let pathComponent = "yourfileName"

    let fileManager = NSFileManager.defaultManager()
    let directoryURL = fileManager.URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0]
    let fileUrl = directoryURL.URLByAppendingPathComponent(pathComponent)
    return fileUrl
    })
  .progress { bytesRead, totalBytesRead, totalBytesExpectedToRead in
    print(totalBytesRead)
    dispatch_async(dispatch_get_main_queue()) {
      let progress = Double(totalBytesRead) / Double(totalBytesExpectedToRead)
      completionHandler(progress, nil)
    }
    }
    .responseString { response in
      print(response.result.error)
      completionHandler(nil, response.result.error)
  }
}
Swift 3.0

在swift 3.0中,它是下载文件目的地

 Alamofire.download(url, method: .get, to: { (url, response) -> (destinationURL: URL, options: DownloadRequest.DownloadOptions) in
  return (filePathURL, [.removePreviousFile, .createIntermediateDirectories])
})
 .downloadProgress(queue: utilityQueue) { progress in
    print("Download Progress: \(progress.fractionCompleted)")
}
.responseData { response in
    if let data = response.result.value {
        let image = UIImage(data: data)
    }
}

有关更多信息,请访问

感谢您提供更详细的答案。如何在swift 3.0中编写相同的答案?
 Alamofire.download(url, method: .get, to: { (url, response) -> (destinationURL: URL, options: DownloadRequest.DownloadOptions) in
  return (filePathURL, [.removePreviousFile, .createIntermediateDirectories])
})
 .downloadProgress(queue: utilityQueue) { progress in
    print("Download Progress: \(progress.fractionCompleted)")
}
.responseData { response in
    if let data = response.result.value {
        let image = UIImage(data: data)
    }
}