Python scans files under a specified folder (containing subfolders)

Source: Internet
Author: User


Scans the files under the specified folder. Or a function that matches the specified suffix and prefix.


Suppose you want to scan a file under a specified folder, include subfolders, call Scan_files ("/export/home/test/")

Suppose you want to scan a file for a specific suffix under a specified folder (for example, a jar package), contain subfolders, call Scan_files ("/export/home/test/", postfix= ". Jar")

Suppose you want to scan a file for a specific prefix under a specified folder (for example, test_xxx.py). Include subfolders, call Scan_files ("/export/home/test/", prefix= "Test_")



#!/usr/bin/env python#coding=utf-8import osdef scan_files (directory,prefix=none,postfix=none):    files_list=[]        for Root, sub_dirs, files in Os.walk (directory): For        special_file in Files:            if postfix:                if Special_file . EndsWith (postfix):                    files_list.append (Os.path.join (root,special_file))            elif prefix:                if Special_ File.startswith (prefix):                    files_list.append (Os.path.join (root,special_file))            else:                files_ List.append (Os.path.join (root,special_file))                              return files_list


Python scans files under a specified folder (containing subfolders)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.