- 816154b os: add UserCacheDir by Andrew Bonventre · 7 years ago
- eda703a os: mention the influence of umask in docs by Matthijs Kooijman · 7 years ago
- ddae7fb os: don't use test logger for Getwd by Ian Lance Taylor · 7 years ago
- 29be20a cmd/go: invalidate cached test results if env vars or files change by Russ Cox · 7 years ago
- 86b7721 os: rearrange OpenFile Flags doc by Ian Lance Taylor · 7 years ago
- 94d9371 os: clarify that OpenFile reqires one of O_RDONLY/O_WRONLY/O_RDWR by Ian Lance Taylor · 7 years ago
- 187957d os: add deadline methods for File type by Ian Lance Taylor · 7 years ago
- 5d168a9 os: add period at end of O_EXCL comment by Tim Cooper · 7 years ago
- 92ad8df os: add documentation for Windows users by Brad Fitzpatrick · 8 years ago
- 0b81c02 os: clarify behavior of TempDir by Brad Fitzpatrick · 8 years ago
- 0fd7de4 os: fix handling of ErrShortWrite in (*File).Write by Ian Lance Taylor · 8 years ago
- e3d7ec0 os: consistently return ErrClosed for closed file by Ian Lance Taylor · 8 years ago
- fb4b434 os, net, internal/poll: return consistent error for closed socket by Ian Lance Taylor · 8 years ago
- 11c7b44 os: fix race between file I/O and Close by Ian Lance Taylor · 8 years ago
- a5999b7 os: more descriptive error for File.ReadAt and File.WriteAt with negative offset. by George Gkirtsou · 8 years ago
- c05b06a os: use poller for file I/O by Ian Lance Taylor · 8 years ago
- d4b46aa os: document that Rename does not replace an existing directory by Ian Lance Taylor · 8 years ago
- 231aa9d os: use extended-length paths on Windows when possible by Quentin Smith · 8 years ago
- 3366d6a os: adjust (*File).Read comment by Russ Cox · 8 years ago
- 212d2f8 os: add ErrClosed, return for use of closed File by Dan Caddigan · 8 years ago
- a8c6c48 os: document that the runtime can write to standard error by Ian Lance Taylor · 9 years ago
- 260ea68 os: deprecate os.SEEK_SET, os.SEEK_CUR, and os.SEEK_END by Joe Tsai · 9 years ago
- 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
- 5d8442a os: document that Rename overwrites existing file by Russ Cox · 9 years ago
- 008e96c os: be more specific on what flags are used for by Volker Dobler · 9 years ago
- 53c92f9 os: document that behavior of Seek on O_APPEND files is not specified by Shenghou Ma · 10 years ago
- 019297a os: remove a redundant branch in File.Read. by Aaron Jacobs · 10 years ago
- 90c668d os: remove stuttering return value names by Brad Fitzpatrick · 10 years ago
- fb90f4c os: improve documentation on Rename by Jeff R. Allen · 10 years ago
- 9c0b145 os: don't return Chmod's error from Mkdir and OpenFile by Kato Kazuyoshi · 10 years ago
- 6262902 os: handle the sticky bit separately for *BSD and Solaris by Kato Kazuyoshi · 10 years ago
- a62da20 os: do not assume syscall i/o funcs return n=0 on error by Russ Cox · 10 years ago
- c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/os/file.go]
- a4b66b7 os: fix build. by Shenghou Ma · 11 years ago
- aa0ae75 os: clarify docs for Rename. by Shenghou Ma · 11 years ago
- 4cb086b os: be consistent about File methods with nil receivers by Rob Pike · 12 years ago
- 8378804 os: fix windows and plan9 builds by Brad Fitzpatrick · 12 years ago
- 465b9c3 gofmt: apply gofmt -w src misc by Robert Griesemer · 12 years ago
- eb7d569 os: fix documentation typos: s/an array/a slice/. by Nigel Tao · 12 years ago
- 27e07a2 os: fix minor typo by Sanjay Menakuru · 13 years ago
- 441538e os,time: fix Plan 9 build by Fazlul Shahriar · 13 years ago
- efb28b2 os: add a simple example to the package doc. by Rob Pike · 13 years ago
- 56069f0 os: delete os.EINVAL and so on by Rob Pike · 13 years ago
- 4152b43 os: delete Exec, NewFile takes uintptr, rename ShellExpand, doc fixes by Brad Fitzpatrick · 13 years ago
- be0f6fe os: talk about errors and PathError in the package documentation by Rob Pike · 13 years ago
- 6454a3e os: use FileMode instead of uint32 in various functions by Brad Fitzpatrick · 13 years ago
- 744fb52 os: be consistent with receiver names for godoc TOC alignment by Brad Fitzpatrick · 13 years ago
- c69d634 os: make ReadAt comment clearer by Russ Cox · 13 years ago
- c017a82 syscall: use error by Russ Cox · 13 years ago
- 08a073a os: use error, io.EOF by Russ Cox · 13 years ago
- 4853c51 os: do not interpret 0-length read as EOF by Russ Cox · 13 years ago
- 63b8b948 windows: define and use syscall.Handle Fixes #1487. by Wei Guangjing · 14 years ago
- f711532 os: simplify WriteString It was working too hard. by Rob Pike · 14 years ago
- 34e0725 os: be explicit in the package comment that this package is for portable features only. by Rob Pike · 14 years ago
- b1deb3b os: fix race in ReadAt/WriteAt on Windows by Alex Brainman · 14 years ago
- 6a186d3 src/pkg: make package doc comments consistently start with "Package foo". by Nigel Tao · 14 years ago
- 8a90fd3 os: New Open API. by Rob Pike · 14 years ago
- 2be13a8 os: add Seek whence constants by Brad Fitzpatrick · 14 years ago
- c256f0a os: Plan 9 support. by Yuval Pavel Zholkover · 14 years ago
- 217693e os: add Sync to *File, wraps syscall.Fsync by Andrew Gerrand · 14 years ago
- e45b58f os: change the type of permissions argument for Open etc. to uint32. by Rob Pike · 15 years ago
- 61fb9cc os: change comment on O_APPEND to be more accurate by Andrew Gerrand · 15 years ago
- bb84f4b changes &x -> x[0:] for array to slice conversion by Russ Cox · 15 years ago
- 1afa2a1 os: add Chtimes function by Brad Fitzpatrick · 15 years ago
- fb6b391 os, syscall: more mingw by Alex Brainman · 15 years ago
- b07e4d9 os: mingw version of Readdir() and Stat() implemented by Alex Brainman · 15 years ago
- 3ddeef8 rename os.Dir to os.FileInfo by Rob Pike · 15 years ago
- 79017aa syscall: implementing some mingw syscalls required by os package by Alex Brainman · 15 years ago
- b21f313 os: drop File finalizer after normal Close by Russ Cox · 15 years ago
- 62d627f runtime: allow arbitrary return type in SetFinalizer. by Russ Cox · 15 years ago
- 3f25c8a Fix comment for Chmod. by Peter Froehlich · 15 years ago
- d65a5cc 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
- 51f2932 syscalls can return negative i/o counts. fix bugs in ReadAt and WriteAt not to include by Rob Pike · 15 years ago
- 0b5cc31 Add os.Rename. by Ian Lance Taylor · 15 years ago
- 9ac4449 gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg by Russ Cox · 15 years ago
- 4e201c7 os.ReadAt doesn't return EOF at EOF. thanks to lionkov for the fix. by Rob Pike · 15 years ago
- c90d392 spell it with an "e" by Ken Thompson · 15 years ago
- 3bb0032 - replaced gofmt expression formatting algorithm with by Robert Griesemer · 15 years ago
- 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
- 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
- fd1add2 syscall cleanup. by Russ Cox · 15 years ago
- 449086e Change Stat to Lstat in Readdir so we don't recur when someone symlinks "." by Rob Pike · 15 years ago
- 2c5ec1e apply gofmt to malloc math once os by Russ Cox · 15 years ago
- f7e92c5 os.File.ReadAt/WriteAt by Russ Cox · 16 years ago
- 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
- 0496040 remove unnecessary pkg. references by Russ Cox · 16 years ago
- 8f9a953 make use of forward method declaration by Russ Cox · 16 years ago
- a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
- 64684cc introduce os.EOF and io.ErrUnexpectedEOF. by Russ Cox · 16 years ago
- d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago[Renamed from src/lib/os/file.go]
- 9e0fec9 update Go tree to use new syscall package. by Russ Cox · 16 years ago
- 23c81f7 add Getwd, Fchdir, tests by Russ Cox · 16 years ago
- 66f5e89 os: MkdirAll, RemoveAll, Chmod, Chown, Truncate, Getgroups. by Russ Cox · 16 years ago
- 5e76c03 make Stat indicate whether it followed a symlink. by Russ Cox · 16 years ago
- 7aabf2d Add os.Link, os.Symlink, os.Readlink. by Ian Lance Taylor · 16 years ago
- 918afd94 move things out of sys into os and runtime by Russ Cox · 16 years ago
- f7d3eb9 exit with error status EPIPE if by Russ Cox · 16 years ago
- aaf63f8 Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Errors with os.Errors. by Rob Pike · 16 years ago
- ff73221 fix infinite loop in Readdirnames: bufp > nbuf can happen by Russ Cox · 16 years ago
- 9b3f437 fix error return in Remove change canexec to canExec. by Russ Cox · 16 years ago