Methods for mkdir and touch
HARDY8118 opened this issue · 2 comments
HARDY8118 commented
Is there any equivalent method for the mkdir and touch commands?
I do not see anything mentioned in the Quick start: Unix equivalents section.
bitfield commented
I would use os.Mkdir / MkdirAll and os.Chtimes for this—script doesn't need to duplicate what's already in the standard library.
HARDY8118 commented
Okay. That makes sense.