Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

proposal: os: add Root.ReadFile & Root.WriteFile #73126

Open
neild opened this issue Apr 1, 2025 · 2 comments
Open

proposal: os: add Root.ReadFile & Root.WriteFile #73126

neild opened this issue Apr 1, 2025 · 2 comments
Labels
LibraryProposal Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool Proposal
Milestone

Comments

@neild
Copy link
Contributor

neild commented Apr 1, 2025

I propose adding ReadFile and WriteFile methods to *os.Root:

package os

// ReadFile reads the named file in the root and returns the contents.
// See [ReadFile] for more details.
func (r *Root) ReadFile(name string) ([]byte, error)

// WriteFile writes data to the named file in the root, creating it if necessary.
// See [WriteFile] for more details.
func (r *Root) WriteFile(name string, data []byte, perm FileMode) error

These are purely convenience functions (as are os.ReadFile and os.WriteFile). I propose adding them because:

  1. os.ReadFile and os.WriteFile are very convenient convenience functions, and it's a shame not to have an equivalent that works with os.Root.
  2. The io/fs package not only includes a ReadFile convenience function, it includes a ReadFileFS variant of FS containing a ReadFile method. I think that points at this being something we consider core filesystem functionality.
@gopherbot gopherbot added this to the Proposal milestone Apr 1, 2025
@gabyhelp
Copy link

gabyhelp commented Apr 1, 2025

Related Issues

(Emoji vote if this was helpful or unhelpful; more detailed feedback welcome in this discussion.)

@gabyhelp gabyhelp added the LibraryProposal Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool label Apr 1, 2025
@seankhliao seankhliao changed the title proposal: add os.Root.ReadFile/os.Root.WriteFile proposal: os: add Root.ReadFile & Root.WriteFile Apr 1, 2025
@irsl
Copy link
Contributor

irsl commented Apr 4, 2025

Could we have an os level shortcut methods as well (similar to os.OpenInRoot)? By having that, one wouldn't need to bother with closing the root for one-time operations.

Without that, the following oneliner:

data, err:= os.ReadFile(filepath.Join(dir, file))

Would be around 6:

r, err:= os.OpenRoot(dir)
if err != nil {
   log.Fatalf(...)
}
defer r.Close()
data, err:= r.ReadFile(file)

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
LibraryProposal Issues describing a requested change to the Go standard library or x/ libraries, but not to a tool Proposal
Projects
None yet
Development

No branches or pull requests

4 participants