Quick actions

cmd+k|ctrl+k

Navigation

Languages

File path operations

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-10-10T08:22:19Z

Updated

2019-10-10T08:22:19Z

package main

import (
	"fmt"
	"path/filepath"
)

func main() {
	path := filepath.Join("dir", "sub", "file.txt")
	fmt.Printf("path: %s\n", path)
}
INFO