"함수 disk total space()"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
3번째 줄: 3번째 줄:
{{DISPLAYTITLE:함수 disk_total_space()}}
{{DISPLAYTITLE:함수 disk_total_space()}}
;함수 disk_total_space()
;함수 disk_total_space()
==Bash==
[[분류: Bash]]
{{참고|Bash disk_total_space}}
<syntaxhighlight lang='bash' run>
df --block-size=1 --output=size / | sed 1d
</syntaxhighlight>
==Go==
[[분류: Go]]
{{참고|Go disk_total_space}}
<syntaxhighlight lang='go' run>
package main
import (
"fmt"
"os"
"golang.org/x/sys/unix"
)
func main() {
var stat unix.Statfs_t
wd, _ := os.Getwd()
unix.Statfs(wd, &stat)
fmt.Println(stat.Blocks * uint64(stat.Bsize))
}
</syntaxhighlight>


==PHP==
==PHP==

2023년 2월 26일 (일) 02:20 기준 최신판

1 개요[ | ]

함수 disk_total_space()

2 Bash[ | ]

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

3 Go[ | ]

package main

import (
	"fmt"
	"os"

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

func main() {
	var stat unix.Statfs_t
	wd, _ := os.Getwd()
	unix.Statfs(wd, &stat)
	fmt.Println(stat.Blocks * uint64(stat.Bsize))
}

4 PHP[ | ]

<?php
echo disk_total_space("/");

5 같이 보기[ | ]

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