This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bigaddo
Recipients bigaddo
Date 2009-09-29.07:07:29
SpamBayes Score 3.1863033e-07
Marked as misclassified No
Message-id <1254208050.64.0.613024688273.issue7017@psf.upfronthosting.co.za>
In-reply-to
Content
When I iterate through a list created using os.listdir it seems to grow
as I create files in that directory. I want a static copy of the list of
files in the directory prior to me writing new files into it.

Here is my code:

fileList = os.listdir(temporaryDirectory)

for curFile in fileList:
   # print the file list to see if it is indeed growing
   print FileList
   fp = file(os.path.join(temporaryDirectory, "." + curFile), 'w')
   # write stuff
   fp.close()

Here is the output:

['a', 'b', 'c']
['a', 'b', 'c', '.a']
['a', 'b', 'c', '.a', '.b']
['a', 'b', 'c', '.a', '.b', '.c']

So the list is growing and eventually curFile iterates through the list
of files that were created. This behaviour was unwanted in my case and I
couldn't find any documentation about this.
History
Date User Action Args
2009-09-29 07:07:30bigaddosetrecipients: + bigaddo
2009-09-29 07:07:30bigaddosetmessageid: <1254208050.64.0.613024688273.issue7017@psf.upfronthosting.co.za>
2009-09-29 07:07:29bigaddolinkissue7017 messages
2009-09-29 07:07:29bigaddocreate