Go Package os: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 8: Line 8:
* [[Go Recipes|Recipes]]
* [[Go Recipes|Recipes]]


=os Package Functions=
=Functions=


==<tt>os.Open()</tt>==
==<tt>os.Open()</tt>==

Revision as of 06:23, 4 April 2016

External

Internal

Functions

os.Open()

Works with files and directories.

os.Create()

os.File

os.File Methods

FileInfo

FileInfo Methods

  • Size()

os.Args

os.Args is a string slice that holds the command-line arguments, starting with the program name. For more details on how to use see:

Command Line Parsing