Skip to content

Instantly share code, notes, and snippets.

@Ramko9999
Last active April 25, 2021 20:32
Show Gist options
  • Save Ramko9999/0cbed3927a4d6746be6d0c433cd31db8 to your computer and use it in GitHub Desktop.
Save Ramko9999/0cbed3927a4d6746be6d0c433cd31db8 to your computer and use it in GitHub Desktop.
import (
"log"
"os"
)
func navigate(){
os.Getwd() // Working Directory: ./folder
os.Chdir("./item"); // Working Directory: ./folder/item
os.Chdir("../"); // Working Directory: ./folder
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment