| 1234567891011121314151617181920212223242526272829 | // Copyright (C) 2016 The Syncthing Authors.//// This Source Code Form is subject to the terms of the Mozilla Public// License, v. 2.0. If a copy of the MPL was not distributed with this file,// You can obtain one at https://mozilla.org/MPL/2.0/.// +build !windowspackage fsimport "os"var symlinksSupported = truefunc DisableSymlinks() {	symlinksSupported = false}func (BasicFilesystem) SymlinksSupported() bool {	return symlinksSupported}func (BasicFilesystem) CreateSymlink(name, target string) error {	return os.Symlink(target, name)}func (BasicFilesystem) ReadSymlink(path string) (string, error) {	return os.Readlink(path)}
 |