Reputation: 35
I need to create symbolic link in my web pages. There is public folder called data
. It would be great if I could create symlink from this folder to external folder out of my web application. There are stored data for downloading.
data
folder?Upvotes: 0
Views: 213
Reputation: 189307
The symlink as such is just recorded by git
. Its target does not have to exist. Whether or not it works when you check out the repo also depends on the capabilities of the systems where you check it out (some file systems don't permit symlinks at all, for example).
Upvotes: 2