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

  • Home
  • SEARCH
  • 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 7562035
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:18:47+00:00 2026-05-30T13:18:47+00:00

I have the following code, simple I know (please feel free to recommend improvements)

  • 0

I have the following code, simple I know (please feel free to recommend improvements)

It seems with the shell scripts function, the total seems to be wrong, I count 22 but it is reporting 42, is there a problem with the code.

import os

myPath = os.getenv("scripts")
pyCounter = 0 
sqlCounter = 0
shCounter = 0

def python_scripts():
  global pyCounter
  for root, dirs, files in os.walk(myPath):     
    for file in files:             
      if file.endswith('.py'):             
       pyCounter += 1 

def sql_scripts():
  global sqlCounter
  for root, dirs, files in os.walk(myPath):     
    for file in files:             
      if file.endswith('.sql'):             
       sqlCounter += 1 

def sh_scripts():
  global shCounter
  shell_ext = ['ksh','sh','bash']
  for shell in shell_ext:
    for root, dirs, files in os.walk(myPath):     
      for file in files:             
        if file.endswith(shell):
           shCounter += 1

python_scripts()
sql_scripts()
sh_scripts()

print ("Python : " + str(pyCounter))
print ("SQL : "  + str(sqlCounter))
print ("Shell : " + str(shCounter))

Thanks in advance

  • 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-30T13:18:48+00:00Added an answer on May 30, 2026 at 1:18 pm

    Your counts are off because a file name ending in bash or ksh also ends in sh. You should include a . to make sure this is really the extension. You can also pass a tuple of strings to str.endswith(), avoiding one of the loops.

    Here’s your code cleaned up a bit. The three functions are basically doing the same thing, just with different extensions, so you should write a single function accepting a parameter. Instead of using global variables for the counters, simply return the values:

    def count_files(path, extensions):
        counter = 0
        for root, dirs, files in os.walk(path):
            for file in files:
                counter += file.endswith(extensions)
        return counter
    
    path = os.getenv("scripts")
    print count_files(path, '.py')
    print count_files(path, '.sql')
    print count_files(path, ('.ksh', '.sh', '.bash'))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have got the following very simple code: function init() { var articleTabs =
i have the following simple code, but it doesn,t work <ul> <li id=one onmouseover=this.style.background-color='white';>
I have the following code (correct for my simple tests) for a linked list
I have used following code to create a simple PDF file. It executes fine
I have the following code that fills dataTable1 and dataTable2 with two simple SQL
I have the following simple Java code: package testj; import java.util.*; public class Query<T>
I have the following PHP code doing a very simple select into a table.
I have a simple application with the following code: FileInfo[] files = (new DirectoryInfo(initialDirectory)).GetFiles();
I have a simple 3D cube that I can rotate using the following code:
I have a simple DOM code like the following <div> <div> </div> </div> I

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.