함수 disk used space()

1 개요[ | ]

함수 disk_used_space()

2 Bash[ | ]

df --block-size=1 --output=used / | sed 1d

3 Go[ | ]

package main

import (
	"fmt"

	"golang.org/x/sys/unix"
)

func main() {
	var stat unix.Statfs_t
	unix.Statfs("/", &stat)
	fmt.Println((stat.Blocks - stat.Bavail) * uint64(stat.Bsize))
}

4 PHP[ | ]

<?php
echo disk_total_space("/")-disk_free_space("/");

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}