Golang : Create and resolve(read) symbolic links
Creating new symbolic link for a file and resolving(read) symbolic link back to the origin file is pretty straight forward in Golang with the os.Symlink
and os.Readlink
functions.
Here is an example on how to create and resolve symbolic link.
package main
import (
"fmt"
"os"
)
func main() {
// create a new symbolic or "soft" link
err := os.Symlink("file.txt", "file-symlink.txt")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
// resolve symlinks
fileInfo, err := os.Lstat("file-symlink.txt")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
if fileInfo.Mode()&os.ModeSymlink != 0 {
originFile, err := os.Readlink(fileInfo.Name())
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Println("Resolved symlink to : ", originFile)
}
}
Sample output :
Resolved symlink to : file.txt
References :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.3k Golang : Find the length of big.Int variable example
+5.5k Unix/Linux : How to find out the hard disk size?
+9.9k Golang : Channels and buffered channels examples
+18.2k Golang : How to get hour, minute, second from time?
+6.2k WARNING: UNPROTECTED PRIVATE KEY FILE! error message
+8.2k Golang : Implementing class(object-oriented programming style)
+13.8k Golang : Fix cannot use buffer (type bytes.Buffer) as type io.Writer(Write method has pointer receiver) error
+9.3k Golang : Create unique title slugs example
+7k Nginx : How to block user agent ?
+6.8k Golang : constant 20013 overflows byte error message
+13.3k Golang : Count number of runes in string
+25.1k Golang : Storing cookies in http.CookieJar example