"함수 filesize"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
[[category: File]]
[[category: File]]
==Bash==
[[category: Bash]]
<source lang='Bash'>
stat -c%s /etc/hosts
</source>


==PHP==
==PHP==
13번째 줄: 19번째 줄:
print( os.path.getsize('/etc/hosts') )
print( os.path.getsize('/etc/hosts') )
</source>
</source>
==같이 보기==
*[[리눅스 stat]]

2014년 11월 4일 (화) 14:52 판


1 Bash

stat -c%s /etc/hosts

2 PHP

echo filesize('/etc/hosts');

3 Python

import os
print( os.path.getsize('/etc/hosts') )

4 같이 보기

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