Go で実行可能ファイルのステータスを確認する方法
os.FileInfo インスタンスがある場合、ファイルが実行可能かどうかを確認する必要がある場合があります。行く。これには、os.FileInfo.Mode() からの許可ビットを解読する必要があります。
テスト ケース:
#!/usr/bin/env bash mkdir -p test/foo/bar touch test/foo/bar/{baz.txt,quux.sh} chmod +x test/foo/bar/quux.sh
<code class="go">import ( "os" "path/filepath" "fmt" )</code>
解決策:
ファイルの実行可能性は、os.FileMode.Perm() に格納されている Unix 権限ビットによって決まります。これらのビットは、9 ビットのビットマスク (0777 8 進数) を形成します。
Unix 許可ビットの意味:
rwxrwxrwx
各ユーザー クラス:
実行可能性をチェックする関数:
所有者による実行可能ファイル:
<code class="go">func IsExecOwner(mode os.FileMode) bool { return mode&0100 != 0 }</code>
グループによる実行可能ファイル:
<code class="go">func IsExecGroup(mode os.FileMode) bool { return mode&0010 != 0 }</code>
他者による実行可能:
<code class="go">func IsExecOther(mode os.FileMode) bool { return mode&0001 != 0 }</code>
任意のによる実行可能:
<code class="go">func IsExecAny(mode os.FileMode) bool { return mode&0111 != 0 }</code>
全員による実行可能:
<code class="go">func IsExecAll(mode os.FileMode) bool { return mode&0111 == 0111 }</code>
<code class="go">func main() { filepath.Walk("test", func(path string, info os.FileInfo, err error) error { if err != nil || info.IsDir() { return err } fmt.Printf("%v %v", path, IsExecAny(info.Mode().Perm())) } }</code>
期待される出力:
test/foo/bar/baz.txt false test/foo/bar/quux.txt true
以上がGo ファイルが実行可能かどうかを確認するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。