Re: Dynamic File Name Open()

2007-05-02 Thread tahiriman
On May 2, 7:47 am, Tim Golden <[EMAIL PROTECTED]> wrote: > Robert Rawlins - Think Blue wrote: > > > I'm trying to open a file using open() but the name of the file is created > > dynamically as a variable, but also has part of a static path. For instance, > > the file may be called 'dave' and will

Re: Dynamic File Name Open()

2007-05-02 Thread Tim Golden
Robert Rawlins - Think Blue wrote: > I'm trying to open a file using open() but the name of the file is created > dynamically as a variable, but also has part of a static path. For instance, > the file may be called 'dave' and will always be in '/my/files/here/'. Well that's an absolutely normal w

Dynamic File Name Open()

2007-05-01 Thread Robert Rawlins - Think Blue
Chaps, I'm trying to open a file using open() but the name of the file is created dynamically as a variable, but also has part of a static path. For instance, the file may be called 'dave' and will always be in '/my/files/here/'. Now I've tried a few combinations of getting this to work, su