fileSize2 C# 파일사이즈 Long -> String 변환 public static string GetFileSize(long size) { if(size 2022. 1. 6. Javascript Filesize Format function getFormatFileSize(bytes) { if (typeof bytes !== 'number') { return ''; } if (bytes >= 1000000000) { return (bytes / 1000000000).toFixed(2) + ' GB'; } if (bytes >= 1000000) { return (bytes / 1000000).toFixed(2) + ' MB'; } return (bytes / 1000).toFixed(2) + ' KB'; } 2021. 12. 18. 이전 1 다음 반응형