我需要能够使用可访问网络的文件夹中的文件填充矢量。
设置image_dir
变量时使用的变量设置为以下变量:
msu_path = "http://oer.hpc.msstate.edu/okeanos/"
sub$cruiseID = "EX1504L2"
divespecs$specID = EX1504L2_20150802T223100_D2_DIVE01_SPEC01GEO/
image_dir = http://oer.hpc.msstate.edu/okeanos/ex1504l2/EX1504L2_20150802T223100_D2_DIVE01_SPEC01GEO/
image_dir <- sprintf("%s%s/%s", msu_path, tolower(sub$cruiseID), divespecs$specID)
file_names <- list.files(path = image_dir, pattern = "jpg", ignore.case=TRUE)
如果我做这件事,但是在我的工作目录中使用了一个路径,它就可以正常工作。 image_dir
确实使用上述设置接收到有效的URL,但是它返回file_names
作为字符(空)值,而不是该WAF中.jpg文件的向量。
谢谢您的建议。