2022-03-28 20:23:47 +00:00
|
|
|
//go:build windows
|
2018-01-03 20:53:45 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package fs
|
|
|
|
|
2024-11-02 16:44:55 +00:00
|
|
|
// TODO honor flags when opening files
|
|
|
|
|
2018-01-03 20:53:45 +00:00
|
|
|
// O_NOFOLLOW is a noop on Windows.
|
|
|
|
const O_NOFOLLOW int = 0
|
2024-11-02 16:44:55 +00:00
|
|
|
|
|
|
|
// O_DIRECTORY is a noop on Windows.
|
|
|
|
const O_DIRECTORY int = 0
|