Python 2.7 How to list files in a directory AND all sub directories?

Sebastian

I am writing a script that lists number of lanes, words in text files and now I want to add looking for duplicates.

right now I am using this to list all the text files in a directory:

from sys import argv 
script, directory - argv
files = glob.glob(directory + "/*.txt")

If there are any sub-folders in the directory it will not list those files. How can I do it so that it lists all files from all sub-directories as well?

J19

You can see Python recursive folder read

and

Use a Glob() to find files recursively in Python?

These are useful posts with solutions and great explanation

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How to download HTTP directory with all files and sub-directories as they appear on the online files/folders list?

From Dev

list all c files in sub directories and their parent directory

From Dev

How to delete all files in a directory, keeping sub-directories intact

From Dev

How to get list of all files from a directory (including its sub-directories) whose file name contains a specific string

From Dev

how to list all files and directories in given directory with full path but not recursive?

From Dev

Print a list of "full" relative paths of all the files present in a directory and in its sub-directories

From Dev

Error when uploading a directory to Dropbox including all files and sub-directories with Dropbox Python API

From Dev

Error when uploading a directory to Dropbox including all files and sub-directories with Dropbox Python API

From Dev

How can i add a recursive loop to delete a directory with all sub directories and files inside?

From Dev

How to move all files (excluding sub-directories) from one directory to another?

From Dev

How to append a date to all files in a directory without touching sub-directories via bash script

From Dev

Delete all files and sub directories but keep main directory

From Dev

Change group access to directory and all sub directories and files

From Dev

Change group access to directory and all sub directories and files

From Dev

zip files within all sub-directories of a given parent directory

From Dev

Listing all files in a directory and sub-directories C#

From Dev

PHP Delete all files that are empty in a Directory and any sub directories

From Dev

How can I recursively find a directory by name and delete its contents (including all sub-directories and files) while keeping the directory itself?

From Dev

How can I recursively find a directory by name and delete its contents (including all sub-directories and files) while keeping the directory itself?

From Dev

Fetch the list of all txt files in directory and sub directory and add it to a List

From Dev

How to list directory size of all child directories?

From Dev

How do I find the number of all .txt files in a directory and all sub directories using specifically the find command and the wc command?

From Dev

How to use 7z to archive all the files and directories (including hidden ones) in a directory?

From Dev

Apache Alias For External Directory And All Sub Directories

From Dev

list all files in sub directory 1 level below?

From Dev

In a Linux script, how to remove all files & directories but one, in current directory?

From Dev

How to delete all directories inside a directory except for files, (safely)?

From Dev

find all files indirectory and sub-directories and provide the path from directory

From Dev

Batch command for ImageMagick to convert all files in a directory and sub-directories on windows

Related Related

  1. 1

    How to download HTTP directory with all files and sub-directories as they appear on the online files/folders list?

  2. 2

    list all c files in sub directories and their parent directory

  3. 3

    How to delete all files in a directory, keeping sub-directories intact

  4. 4

    How to get list of all files from a directory (including its sub-directories) whose file name contains a specific string

  5. 5

    how to list all files and directories in given directory with full path but not recursive?

  6. 6

    Print a list of "full" relative paths of all the files present in a directory and in its sub-directories

  7. 7

    Error when uploading a directory to Dropbox including all files and sub-directories with Dropbox Python API

  8. 8

    Error when uploading a directory to Dropbox including all files and sub-directories with Dropbox Python API

  9. 9

    How can i add a recursive loop to delete a directory with all sub directories and files inside?

  10. 10

    How to move all files (excluding sub-directories) from one directory to another?

  11. 11

    How to append a date to all files in a directory without touching sub-directories via bash script

  12. 12

    Delete all files and sub directories but keep main directory

  13. 13

    Change group access to directory and all sub directories and files

  14. 14

    Change group access to directory and all sub directories and files

  15. 15

    zip files within all sub-directories of a given parent directory

  16. 16

    Listing all files in a directory and sub-directories C#

  17. 17

    PHP Delete all files that are empty in a Directory and any sub directories

  18. 18

    How can I recursively find a directory by name and delete its contents (including all sub-directories and files) while keeping the directory itself?

  19. 19

    How can I recursively find a directory by name and delete its contents (including all sub-directories and files) while keeping the directory itself?

  20. 20

    Fetch the list of all txt files in directory and sub directory and add it to a List

  21. 21

    How to list directory size of all child directories?

  22. 22

    How do I find the number of all .txt files in a directory and all sub directories using specifically the find command and the wc command?

  23. 23

    How to use 7z to archive all the files and directories (including hidden ones) in a directory?

  24. 24

    Apache Alias For External Directory And All Sub Directories

  25. 25

    list all files in sub directory 1 level below?

  26. 26

    In a Linux script, how to remove all files & directories but one, in current directory?

  27. 27

    How to delete all directories inside a directory except for files, (safely)?

  28. 28

    find all files indirectory and sub-directories and provide the path from directory

  29. 29

    Batch command for ImageMagick to convert all files in a directory and sub-directories on windows

HotTag

Archive