/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/local/setbtime.go
21 строка
367 B
Nick Craig-Wood
local: fix permission and ownership on symlinks with --links and --metadata
14 ноя 2024, 19:20
14 ноя 2024, 19:20
01ccf20
Код
Авторство
О чём код?
//go:build !windows package local import ( "time" ) const haveSetBTime = false // setBTime changes the birth time of the file passed in func setBTime(name string, btime time.Time) error { // Does nothing return nil } // lsetBTime changes the birth time of the link passed in func lsetBTime(name string, btime time.Time) error { // Does nothing return nil }