8

我们目前面临一个挑战,理想的解决方案是将文件符号链接到 Web URL...

image.jpg -> http://www.host.com/images/image.jpg

这可能吗?

4

3 回答 3

4

也许是您使用 wget 为文件提供的命名管道?

编辑 - 不是 wget。您可以使用 linx -dump。所以 -

mkfifo reddit
links -dump reddit.com > reddit
cat reddit
于 2013-01-31T19:42:21.597 回答
2

这里有几个不错且有趣的解决方案。我特别喜欢@ArjunShankar 的保险丝解决方案。/etc/cron.daily本着保持简单的精神,也许是一个文件

#!/bin/sh
cd /your/dir && wget -N http://www.host.com/images/image.jpg

会更简单和足够好(TM)吗?

于 2013-01-31T20:10:52.310 回答
2

在 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.

于 2019-04-02T15:00:43.723 回答