2017-04-01 09:04:11 +00:00
|
|
|
// Copyright (C) 2015 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/.
|
|
|
|
|
2021-08-17 08:10:41 +00:00
|
|
|
//go:build !linux && !android && !windows
|
2020-05-13 19:46:24 +00:00
|
|
|
// +build !linux,!android,!windows
|
2017-04-01 09:04:11 +00:00
|
|
|
|
|
|
|
package fs
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
2020-08-19 17:58:51 +00:00
|
|
|
func (*BasicFilesystem) underlyingLstat(name string) (fi os.FileInfo, err error) {
|
2017-04-01 09:04:11 +00:00
|
|
|
return os.Lstat(name)
|
|
|
|
}
|