Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4035886
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:09:17+00:00 2026-05-20T12:09:17+00:00

I need to open some new csv files on the fly, depending on what

  • 0

I need to open some new csv files on the fly, depending on what data the infile contains. These csv files need to have filenames based on this data so they can’t be hard coded.

I’m trying to make a dictionary of {filename,FILENAME.CSV}, and am having trouble with the lines below:

    if not os.path.exists(filename):
        files_dict[filename] = open(filename,'w')
    files_dict[filename].write('Test')

The if statement works fine – it will happily go through the infile creating all the necessary csv files.

It doesn’t like the write statement though:

Traceback (most recent call last):
  File "R:\DataTeam\Orange\Landline\Fixed\Websource_Landline_FixedData_SplitIntoAccounts_20110307.py", line 141, in <module>
    files_dict[filename].write('Test')
KeyError: 'OBS Fixed 6-65544 - BRICO DEPOT 201005.csv'

Any ideas on how to write to these files that have been successfully created? Or is there a much easier way to do this?

Thanks,

Tony

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T12:09:18+00:00Added an answer on May 20, 2026 at 12:09 pm

    The problem lies with the fact that if the file already exists, you are not opening the file or assigning the filename as a key in the dict, hence the KeyError exception.

    Try this instead:

    # open file if not yet open
    files_dict.setdefault(filename, open(filename,'w')) 
    files_dict[filename].write("test")
    

    This opens a file in write mode if the filename does not yet exist in the dict, and stores the handler in the dict with the filename as the key. Note that files that already exists but has not yet been assigned to the dict will be overwritten.

    If you are only performing a single write, you can combine the lines since setdefault will return the value assigned to the key.

    files_dict.setdefault(filename, open(filename,'w')).write("test")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some .csv files which I'm using as part of a test bench.
I have a need to open a popup detail window from a gridview (VS
I have an odd need to open two separate instances of excel and having
Can perforce be adjusted so I don't need to open files for edit? Someone
I need to insert in an EditText some numeric data with decimal. I know
I need to monitor all files in a folder, when a file opened (FileObserver.OPEN)
I need open source database that I can ship with my commercial application. It
I need to open foxpro free tables in vb.net using the oledb connection. But...
If you need to open a SqlConnection before issuing queries, can you simply handle
What ports do you need to open in a firewall to connect a remote

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.