Skip to content

Commit

Permalink
Merge pull request #611 from pkg/ISSUE-609-clarify-mkdirall-error-con…
Browse files Browse the repository at this point in the history
…dition

Issue #609 - clarify what 'path contains a regular file' actually means
  • Loading branch information
puellanivis authored Jan 3, 2025
2 parents 088878b + 050bb2e commit fb0652c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ func (c *Client) Mkdir(path string) error {
// MkdirAll creates a directory named path, along with any necessary parents,
// and returns nil, or else returns an error.
// If path is already a directory, MkdirAll does nothing and returns nil.
// If path contains a regular file, an error is returned
// If, while making any directory, that path is found to already be a regular file, an error is returned.
func (c *Client) MkdirAll(path string) error {
// Most of this code mimics https://golang.org/src/os/path.go?s=514:561#L13
// Fast path: if we can tell whether path is a directory or file, stop with success or error.
Expand Down

0 comments on commit fb0652c

Please sign in to comment.