Eric Deveaud <[EMAIL PROTECTED]> writes:
> Gary Wessle wrote:
> >
> > I need to traverse those files in the order they were created
> > chronologically. listdir() does not do it, is there a way besides
> > build a list then list.sort(), then for element in list_of_files open
> > element?
>
>
Gary Wessle wrote:
>
> I need to traverse those files in the order they were created
> chronologically. listdir() does not do it, is there a way besides
> build a list then list.sort(), then for element in list_of_files open
> element?
are the name of the files describing the cration date, or
Gary Herron <[EMAIL PROTECTED]> writes:
> Gary Wessle wrote:
>
> >Hi
> >
> >is there a module to do things like concatenate all files in a given
> >directory into a big file, where all the files have the same data
> >formate?
> >name address phone_no.
> >
> >or do I have to open each, read from o
On 06 May 2006 16:41:45 +1000, Gary Wessle <[EMAIL PROTECTED]> wrote:
> is there a module to do things like concatenate all files in a given
> directory into a big file, where all the files have the same data
> formate?
If you want to combine text files file1 and file2 into a combined file1
>>>
Gary Wessle wrote:
>Hi
>
>is there a module to do things like concatenate all files in a given
>directory into a big file, where all the files have the same data
>formate?
>name address phone_no.
>
>or do I have to open each, read from old/write-or-append to new ...
>
>thanks
>
>
>
There's hardl