본문 바로가기
Programming/JavaScript

자바스크립트로 파일 용량 체크하기

by 막이 2013. 8. 29.

으헝 ;ㅠ; 돌아다니는 소스 파일

다 안돼.. 구글링이 짱이야 

위에껀 바이트 단위로 나온다 

IE 거지같애 ㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ




-IE 외

<script>

   function sizeCheck(){

   var size = document.getElementById("fileInput").files[0].size;

   alert(size);

}


</script>

 <body>

<form name="frm">

    <input type="file" id="fileInput" />

    <input type="button" value="upload" onclick="sizeCheck();">

</form>




-IE

<script>

function getSize()

{

 var myFSO = new ActiveXObject("Scripting.FileSystemObject");

 var filepath = document.upload.file.value;

 var thefile = myFSO.getFile(filepath);

 var size = thefile.size;

 alert(size + " bytes");

}

</script>


<form name="upload">

<input type="file" name="file">

<input type="button" value="Size?" onClick="getSize();">

</form>