Re: How to check whether file is open or not

2007-03-08 Thread Ros
Thanks a lot Gabriel. ctypes is working! Regards, Ros -- http://mail.python.org/mailman/listinfo/python-list

Re: How to check whether file is open or not

2007-03-08 Thread Gabriel Genellina
En Thu, 08 Mar 2007 11:10:42 -0300, Bart Ogryczak [EMAIL PROTECTED] escribió: On Mar 7, 6:28 am, Ros [EMAIL PROTECTED] wrote: There are 10 files in the folder. I wish to process all the files one by one. But if the files are open or some processing is going on them then I do not want to

Re: How to check whether file is open or not

2007-03-07 Thread Diez B. Roggisch
Ros wrote: There are 10 files in the folder. I wish to process all the files one by one. But if the files are open or some processing is going on them then I do not want to disturb that process. In that case I would ignore processing that particular file and move to next file. How can I

Re: How to check whether file is open or not

2007-03-07 Thread Gabriel Genellina
En Wed, 07 Mar 2007 02:28:33 -0300, Ros [EMAIL PROTECTED] escribió: There are 10 files in the folder. I wish to process all the files one by one. But if the files are open or some processing is going on them then I do not want to disturb that process. In that case I would ignore processing

Re: How to check whether file is open or not

2007-03-07 Thread Mattias Nilsson
Ros wrote: There are 10 files in the folder. I wish to process all the files one by one. But if the files are open or some processing is going on them then I do not want to disturb that process. In that case I would ignore processing that particular file and move to next file. How can I

How to check whether file is open or not

2007-03-06 Thread Ros
There are 10 files in the folder. I wish to process all the files one by one. But if the files are open or some processing is going on them then I do not want to disturb that process. In that case I would ignore processing that particular file and move to next file. How can I check whether the