bitfield/script

Methods for mkdir and touch

HARDY8118 opened this issue · 2 comments

Is there any equivalent method for the mkdir and touch commands?
I do not see anything mentioned in the Quick start: Unix equivalents section.

I would use os.Mkdir / MkdirAll and os.Chtimes for this—script doesn't need to duplicate what's already in the standard library.

Okay. That makes sense.