Last updated on 2024-12-21 16:48:38 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.1.2 | 4.23 | 44.04 | 48.27 | ERROR | |
r-devel-linux-x86_64-debian-gcc | 0.1.2 | 3.51 | 33.35 | 36.86 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.1.2 | 81.84 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.1.2 | 87.75 | OK | |||
r-devel-windows-x86_64 | 0.1.2 | 7.00 | 76.00 | 83.00 | OK | |
r-patched-linux-x86_64 | 0.1.2 | 4.92 | 41.86 | 46.78 | OK | |
r-release-linux-x86_64 | 0.1.2 | 5.13 | 42.38 | 47.51 | OK | |
r-release-macos-arm64 | 0.1.2 | 49.00 | OK | |||
r-release-macos-x86_64 | 0.1.2 | 84.00 | OK | |||
r-release-windows-x86_64 | 0.1.2 | 8.00 | 68.00 | 76.00 | OK | |
r-oldrel-macos-arm64 | 0.1.2 | 57.00 | OK | |||
r-oldrel-macos-x86_64 | 0.1.2 | 91.00 | OK | |||
r-oldrel-windows-x86_64 | 0.1.2 | 7.00 | 72.00 | 79.00 | OK |
Version: 0.1.2
Check: examples
Result: ERROR
Running examples in ‘webdav-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: webdav_create_directory
> ### Title: Create a collection (directory) on a WebDAV server
> ### Aliases: webdav_create_directory
>
> ### ** Examples
>
>
> # Example usage with a public WebDAV server.
> # Visit test_server$url link to view the results of the operation.
> library(magrittr)
> library(httr2)
> test_server <- "https://www.webdavserver.com/" %>%
+ request() %>%
+ req_retry(max_tries = 3, max_seconds = 4, backoff = ~ 1) %>%
+ req_perform() %>%
+ try(silent = TRUE)
>
> # Create a directory on the WebDAV server
> if (class(test_server) != "try-error")
+ webdav_create_directory(base_url = test_server$url, folder_path = "Test_Folder", verbose = TRUE)
Folder path to create: Test_Folder
Base URL: https://www.webdavserver.com/Userbc3a693/Test_Folder
Username: Not provided
Request object created successfully.
No authentication added.
Error during directory creation: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to create directory.
Calls: webdav_create_directory ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-devel-linux-x86_64-debian-clang