7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

golangでsymlink判別を実施する

Last updated at Posted at 2015-01-05

ファイル操作を実施するさいに、ファイルがシンボリックリンクかどうかを判断する時にBIFがないように見えました。

不便だなー、と思いつつ以下のやりとりを発見したので備忘のために残します。

どなたかBIFもしくは、もっといい方法を知っていたらご教示ください。

package main

import (
    "log"
    "os"
)

func check(err error) {
    if err != nil {
        println(err)
    }
}

func main() {
    //hogehogeがシンボリックリンクとする
    path := "/var/www/html/hogehoge"
    info, err := os.Lstat(path)
    check(err)

    //以下で判定処理を実施
    if info.Mode()&os.ModeSymlink == os.ModeSymlink {
        realPath, err := os.Readlink(path)
        check(err)

        log.Printf("シンボリックリンクファイル: %v", realPath)

    } else {
        log.Printf("シンボリックリンクではないファイル: %v", path)
    }
}

以下は参考サイトです。

7
5
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?