[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Determine mime type of a file
- From: Dirk Laurie <dpl@...>
- Date: Mon, 2 May 2011 11:22:14 +0200
On Mon, May 02, 2011 at 10:55:23AM +0200, Marco wrote:
> How can I determine the mime type of a file (like the unix
> command “file -i <some_file>”)?
>
Well, on my Ubuntu system it's this easy:
> function mime_type(a) return io.popen('file -i '..a):read() end
Unfortunately io.popen "is system dependent and is not available on
all platforms."
Dirk