lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Reading a directory


From: Mattes
Subject: Re: Reading a directory
Date: Fri, 27 Mar 2015 18:19:48 +0100
User-agent: SOGoMail 2.2.16

Am Freitag, 27. März 2015 18:14 CET, Urs Liska <address@hidden> schrieb:

> Hi,
>
> I think this should be easy, but I don't find it in the Guile reference.
>
> I want a list of filenames in a given directory, what
> os.listdir(dirname) would give me in Python.
>
> What should I use?

Hi Urs,

you need the opendir-readdir-closedir combo:

 (let ((dir (opendir "/etc/")))
   (readdir dir)
   .....
  (closedir dir))

HTH RalfD



>
> TIA
> Urs









reply via email to

[Prev in Thread] Current Thread [Next in Thread]