You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than making users jump through these hoops, it might be easiest to just manually reimplement "symlinks" as vanilla text files, so the key file would simply contain the path to the data file and lookup() would read that file to find where the data is stored.
The text was updated successfully, but these errors were encountered:
On Windows
bkt
fails with this error:This comes from the call to
std::os::windows::fs::symlink_file
which actually doesn't work in most cases. Specifically, Windows treats symlink creation as a privileged action and there aren't a lot of good ways around it.SeCreateSymbolicLinkPrivilege
mklink
in a subprocess, but doesn't work for me, at least. For posterity:Rather than making users jump through these hoops, it might be easiest to just manually reimplement "symlinks" as vanilla text files, so the key file would simply contain the path to the data file and
lookup()
would read that file to find where the data is stored.The text was updated successfully, but these errors were encountered: