file_post.Rd
Upload a file to Filebin
file_post(path, bin = NA)
Path to a file. If a vector then upload multiple files.
Bin name. If NA
the generate random bin name.
A tibble.
if (FALSE) {
# Upload a single file.
file_post(LOREM_IPSUM)
# Upload multiple files.
file_post(c(LOREM_IPSUM, MORE_LOREM_IPSUM))
# Upload to a specific bin.
bin <- bin_name_random(length = 24)
file_post(LOREM_IPSUM, bin)
}