我们目前面临一个挑战,理想的解决方案是将文件符号链接到 Web URL...
image.jpg -> http://www.host.com/images/image.jpg
这可能吗?
也许是您使用 wget 为文件提供的命名管道?
编辑 - 不是 wget。您可以使用 linx -dump。所以 -
mkfifo reddit
links -dump reddit.com > reddit
cat reddit
这里有几个不错且有趣的解决方案。我特别喜欢@ArjunShankar 的保险丝解决方案。/etc/cron.daily
本着保持简单的精神,也许是一个文件
#!/bin/sh
cd /your/dir && wget -N http://www.host.com/images/image.jpg
会更简单和足够好(TM)吗?
在 Mac 上,我成功使用了 maxogden 这个很棒的工具,它也使用了 FUSE:
https ://github.com/maxogden/mount-url
brew install osxfuse
npm install -g mount-url
然后
mount-url "https://url-to-10-gb-video-file-on-some-external-cloud-storage/video.mp4?xxx=yyy"
This would create a symlink for the file named video.mp4
in the current directory.
Not too fast access speed, but works.