■ 파일 길이를 구하는 방법을 보여준다.
▶ 예제 코드 (VB)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
Public Function GetFileSize(strFileName) As String Dim strFileLength As String On Error GoTo ErrorLabel strFileLength = FileLen(strFileName) If strFileLength >= "1024" Then 'KB strFileLength = CCur(strFileLength / 1024) & "KB" Else If strFileLength >= "1048576" Then 'MB strFileLength = CCur(strFileLength / (1024 * 1024)) & "KB" Else strFileLength = CCur(strFileLength) & "B" End If End If GetFileSize = strFileLength Exit Function ErrorLabel: GetFileSize = "0B" Resume End Function |