[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: porting to Windows
- From: steve donovan <steve.j.donovan@...>
- Date: Thu, 15 Jul 2010 10:25:37 +0200
On Thu, Jul 15, 2010 at 10:02 AM, Valerio Schiavoni
<valerio.schiavoni@gmail.com> wrote:
> In particular, is there something in Lua to get the current-platform
> directory separator on paths?
D:\>lua -e "print(package.config)"
\
;
?
!
-
i.e. package.config:sub(1,1) is what you want.
> And is it possible to delete files without using the lfs module?
os.remove()
steve d.