자바스크립트

 

자바스크립트 파일 용량 표현하기

 

function getfileSize(size) {
        var s = ['bytes', 'KB', 'MB', 'GB', 'TB', 'PB'];
        var e = Math.floor(Math.log(size) / Math.log(1024));
        return (x / Math.pow(1024, e)).toFixed(2) + " " + s[e];
};