Last updated on 2025-01-15 05:50:58 CET.
Package | ERROR | NOTE | OK |
---|---|---|---|
BigDataPE | 13 | ||
pikchr | 13 | ||
plug | 8 | ||
RapidFuzz | 4 | 9 | |
webdav | 2 | 11 |
Current CRAN status: OK: 13
Current CRAN status: OK: 13
Current CRAN status: OK: 8
Current CRAN status: NOTE: 4, OK: 9
Version: 1.0
Check: installed package size
Result: NOTE
installed size is 6.5Mb
sub-directories of 1Mb or more:
libs 5.8Mb
Flavors: r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64
Current CRAN status: ERROR: 2, OK: 11
Version: 0.1.3
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/User5e29f3b/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-gcc
Version: 0.1.3
Check: examples
Result: ERROR
Running examples in 'webdav-Ex.R' failed
The error most likely occurred in:
> ### Name: webdav_download_file
> ### Title: Download a file from the WebDAV server
> ### Aliases: webdav_download_file
>
> ### ** Examples
>
> # Example usage with a public WebDAV server.
> library(magrittr)
> library(httr2)
> test_server <- "https://www.webdavserver.com/" %>%
+ request() %>%
+ req_retry(max_tries = 3, max_seconds = 4, backoff = ~ 1) %>%
+ req_perform()
>
> # Download a file from the WebDAV server
> if (class(test_server) != "try-error")
+ webdav_download_file(base_url = test_server$url,
+ file_path = "Project.pdf",
+ destination_path = tempdir(),
+ verbose = TRUE)
Base URL: https://www.webdavserver.com/User2a21ef4
Downloading from: Project.pdf to: D:\temp\2025_01_11_01_50_00_344\Rtmpsnxgdz/Project.pdf
Server Path: https://www.webdavserver.com/User2a21ef4/Project.pdf
Local Destination Path: D:\temp\2025_01_11_01_50_00_344\Rtmpsnxgdz/Project.pdf
Base URL: https://www.webdavserver.com/User2a21ef4/Project.pdf
Username: Not provided
Request object created successfully.
No authentication added.
Error during the download process: Failed to perform HTTP request.
Error in value[[3L]](cond) : Failed to download resource.
Calls: webdav_download_file ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous>
Execution halted
Flavor: r-oldrel-windows-x86_64