Re: Fast way of extracting files from various folders

2015-05-02 Thread subhabrata . banerji
On Saturday, May 2, 2015 at 2:52:32 PM UTC+5:30, Peter Otten wrote: > wrote: > > > I have several millions of documents in several folders and subfolders in > > my machine. I tried to write a script as follows, to extract all the .doc > > files and to convert them in text, but it seems it is taki

Re: Fast way of extracting files from various folders

2015-05-02 Thread Peter Otten
subhabrata.bane...@gmail.com wrote: > I have several millions of documents in several folders and subfolders in > my machine. I tried to write a script as follows, to extract all the .doc > files and to convert them in text, but it seems it is taking too much of > time. > > import os > from fnmat

Re: Fast way of extracting files from various folders

2015-05-02 Thread subhabrata . banerji
On Friday, May 1, 2015 at 5:58:50 PM UTC+5:30, subhabrat...@gmail.com wrote: > Dear Group, > > I have several millions of documents in several folders and subfolders in my > machine. > I tried to write a script as follows, to extract all the .doc files and to > convert them in text, but it seems

Re: Fast way of extracting files from various folders

2015-05-01 Thread Irmen de Jong
On 1-5-2015 14:28, subhabrata.bane...@gmail.com wrote: > Dear Group, > > I have several millions of documents in several folders and subfolders in my > machine. > I tried to write a script as follows, to extract all the .doc files and to > convert them in text, but it seems it is taking too much

Fast way of extracting files from various folders

2015-05-01 Thread subhabrata . banerji
Dear Group, I have several millions of documents in several folders and subfolders in my machine. I tried to write a script as follows, to extract all the .doc files and to convert them in text, but it seems it is taking too much of time. import os from fnmatch import fnmatch import win32com.c