른록노트

[Jquery] 파일 크기 Convert 함수 (KB,MB,GB,TB) 본문

Programming/[Javascript]

[Jquery] 파일 크기 Convert 함수 (KB,MB,GB,TB)

른록 2017. 11. 6. 10:35
function bytesToSize(bytes) {
   var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
   if (bytes == 0) return '0 Byte';
   var i = parseInt(Math.floor(Math.log(bytes) / Math.log(1024)));
   return Math.round(bytes / Math.pow(1024, i), 2) + ' ' + sizes[i];
};

참고사이트

https://stackoverflow.com/questions/15900485/correct-way-to-convert-size-in-bytes-to-kb-mb-gb-in-javascript

반응형
Comments