| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | Char | Monad | >> IO << | Directory | System | Time | Locale | CPUTime | Random |
| Module: | IO |
|---|---|
| Function: | hFileSize |
| Type: | Handle -> IO Integer |
| Description: | for a handle hdl which is attached to a physical file, hFileSize hdl returns the size of that file in 8-bit bytes (>= 0). |
| Related: |
Program source: import IO main = do x <- openFile "/tmp/foo.txt" ReadMode y <-hFileSize x print y
Output: 25458