Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

refactor: replace Readdir(-1) with ioutil.ReadDir #71

Merged
merged 1 commit into from
Nov 28, 2022
Merged

refactor: replace Readdir(-1) with ioutil.ReadDir #71

merged 1 commit into from
Nov 28, 2022

Conversation

Juneezee
Copy link
Contributor

We can simplify the following code

dir, err := os.Open(dirname)
if err != nil {
	return err
}
defer dir.Close()

dirs, err := dir.Readdir(-1)

with just ioutil.ReadDir(dirname)

Signed-off-by: Eng Zer Jun <engzerjun@gmail.com>
@inhere inhere merged commit 752d3b3 into gookit:master Nov 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants