dirlock_windows.go】的更多相关文章

package dirlock type DirLock struct {     dir string } func New(dir string) *DirLock {     return &DirLock{         dir: dir,     } } func (l *DirLock) Lock() error {     return nil } func (l *DirLock) Unlock() error {     return nil }…