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 7979959
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T09:55:22+00:00 2026-06-04T09:55:22+00:00

Does the Config file for the ConfigParser have to be named Config.ini in order

  • 0

Does the Config file for the ConfigParser have to be named “Config.ini” in order to work?

I want the name to be “1Config.ini” so that it appears at the top of a folder dir.

This is what I have currently

config = ConfigParser.ConfigParser()
config.read(Revision[0:Revision.rfind('\\')] + "\1Config.ini")

Type = config.get("myvars", "Type")

I get this error however when the file and code is named “1Config.ini”

<class 'ConfigParser.NoSectionError'>: No section: 'myvars'
  • 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-06-04T09:55:24+00:00Added an answer on June 4, 2026 at 9:55 am

    What’s the output of the following? Make sure it’s a valid file name.

    >>> print Revision[0:Revision.rfind('\\')] + "\1Config.ini"
    

    Ideally use os.path.join instead of concatenating strings:

    import os
    filename = os.path.join(Revision[0:Revision.rfind('\\')], "Config.ini")
    config.read(filename)
    

    You probably shouldn’t name your variable Type, because type is a built-in function/module and it’d be confusing.

    Type = config.get("myvars", "Type")
    

    And no, config files can be named anything:

    >>> a = ConfigParser.ConfigParser()
    >>> a.read("E:/Documents/2012/config.test") # where config.test is the example from the documentation
    ['E:/Documents/2012/config.test']
    >>> a.sections()
    ['My Section']
    >>> a.items(a.sections()[0])
    [('foodir', 'frob/whatever'),
     ('dir', 'frob'),
     ('long', 'this value continues\nin the next line')]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a config file, myapp.exe.config, that I want to install only if it
I have a wxPython application that relies on an external config file. I want
I am working a script to generate a config file that I want to
Does enabling the configuration option with-config-file-scan-dir when compiling PHP lead to performance issues? Specifically,
what does it means struts controller reads the struts-config.xml file when ever web application
Does anyone have any experience with the following fluent config error? faultString = An
Does it have any major effect on performance/ memory if my web.config is really
I'm seeing an exception creep up that does not happen when config.threadsafe! is disabled
I have a config file FOO in /etc/sysconfig/. This Linux file is very similar
If I want to preserve key names in a config file, I must add

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.