2020-05-20 10:27:37 +02:00
|
|
|
#' @title Select a file for loading
|
|
|
|
|
#' @description Loosely mimics the functionality of the `uigetfile` function on
|
|
|
|
|
#' Matlab.
|
|
|
|
|
#' @references https://se.mathworks.com/help/matlab/ref/uigetfile.html
|
|
|
|
|
#' @param title Pre-prompt message
|
|
|
|
|
#' @export
|
|
|
|
|
uigetfile <- function(title = "") {
|
|
|
|
|
# ==========================================================================
|
|
|
|
|
# Pre-prompt message
|
|
|
|
|
# ==========================================================================
|
2020-05-20 11:22:31 +02:00
|
|
|
message(title)
|
2020-05-20 10:27:37 +02:00
|
|
|
# ==========================================================================
|
|
|
|
|
# Reading file path and name
|
|
|
|
|
# ==========================================================================
|
|
|
|
|
filepath <- readline(
|
|
|
|
|
paste0("Enter file path (leave empty for ", getwd(), "): ")
|
|
|
|
|
)
|
|
|
|
|
if (filepath == "") filepath <- getwd()
|
|
|
|
|
filename <- file.choose()
|
|
|
|
|
# ==========================================================================
|
|
|
|
|
# Organizing output
|
|
|
|
|
# ==========================================================================
|
|
|
|
|
out <- list(name = filename, path = filepath)
|
|
|
|
|
return(out)
|
|
|
|
|
}
|