All public logs

From wikinotes

Combined display of all available logs of wikinotes. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:15, 18 June 2022 Will talk contribs created page Golang filesystem (Created page with " = Errors = <blockquote> <syntaxhighlight lang="go"> require "errors" require "os" require "io/fs" _, err := os.Stat("foo.bar") if errors.Is(err, fs.ErrExist) {...} if errors.Is(err, fs.ErrNotExist) {...} if errors.Is(err, fs.ErrPermission) {...} if errors.Is(err, fs.ErrPermission) {...} </syntaxhighlight> {{ expand | The old method defines <code>Is${N}</code> functions to test for various <code>os</code> package errors. | <syntaxhighlight lang="go"> require "os" //...")