A small menubar app that allows you to switch between R versions quickly (if you have multiple versions of R framework installed). https://rud.is/rswitch
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.4 KiB

//
// DownloadFromRStudioServer.swift
// RSwitch
//
// Created by hrbrmstr on 8/24/19.
// Copyright © 2019 Bob Rudis. All rights reserved.
//
import Foundation
import Cocoa
func download_from_studio_server(fromRS : String, toFS : String) {
let rsURL = URL(string: fromRS)!
let fsURL = URL(string: toFS)!
4 years ago
URLSession.shared.configuration.timeoutIntervalForRequest = 300.0
let task = URLSession.shared.downloadTask(with: rsURL) {
localURL, urlResponse, error in
if (error != nil) {
4 years ago
NSLog("Error exporting from RStudio Server; \(String(describing: error))")
} else {
if let localURL = localURL {
4 years ago
if (FileManager.default.fileExists(atPath: fsURL.path)) {
do {
try FileManager.default.removeItem(at: fsURL)
} catch {
4 years ago
NSLog("Error removing file during RStudio Server export; \(error)")
4 years ago
}
}
do {
try FileManager.default.moveItem(at: localURL, to: fsURL)
4 years ago
NSWorkspace.shared.openFile(fsURL.deletingLastPathComponent().absoluteString, withApplication: "Finder")
NSWorkspace.shared.activateFileViewerSelecting([fsURL])
} catch {
4 years ago
NSLog("Error moving RStudio Server export file; \(error)")
}
}
}
}
task.resume()
}