DEV Community

Cover image for Reading a file directory with Python
Dennis O'Keeffe
Dennis O'Keeffe

Posted on • Originally published at blog.dennisokeeffe.com

Reading a file directory with Python

I write content for AWS, Kubernetes, Python, JavaScript and more. To view all the latest content, be sure to visit my blog and subscribe to my newsletter. Follow me on Twitter.

This is Day 5 of the #100DaysOfPython challenge.

This post will use the glob library to reading a base directory that we have set with files and put them into a list.

Prerequisites

  1. Familiarity with Pipenv. See here for my post on Pipenv.
  2. Familiarity with JupyterLab. See here for my post on JupyterLab.
  3. A list of icons (or just any files) in an icons directory.

Getting started

Let's create the hello-read-dir-python directory and add an icons directory to read from.

# Make the `hello-read-dir-python` directory
$ mkdir hello-read-dir-python
$ cd hello-read-dir-python
# Create a folder to place your icons
$ mkdir icons

# Init the virtual environment
$ pipenv --three
$ pipenv install pillow
$ pipenv install --dev jupyterlab
Enter fullscreen mode Exit fullscreen mode

Ensure to put some files into the icons directory. They do not necessarily need to be imaged, but the code written will target that folder.

Now we can start up the notebook server.

# Startup the notebook server
$ pipenv run jupyter-lab
# ... Server is now running on http://localhost:8888/lab
Enter fullscreen mode Exit fullscreen mode

The server will now be up and running.

Creating the notebook

Once on http://localhost:8888/lab, select to create a new Python 3 notebook from the launcher.

Ensure that this notebook is saved in hello-read-dir-python/docs/<your-file-name>.

We will create two cells to handle two parts of this script:

  1. A cell to import the require packages.
  2. A cell to read the directory.

Importing the packages

We will use the glob library to read the directory.

The glob library allows us to recurise through a directory and return a list of all the files that match the glob pattern.

We also use the packages from the os.path library to create a path to our icons directory from the script..

Update hello-read-dir-python/docs/<your-file-name> to have the following:

import glob
from os.path import join, dirname, abspath
Enter fullscreen mode Exit fullscreen mode

Reading the directory

Once we have the glob library imported, then we can use it to read the directory and do the heavy lifting for us.

# Assign icons_dir as a path to the icons directory from the script file
icons_dir = join(dirname(abspath("__file__")), '../icons')
print(glob.glob(f"{icons_dir}/*"))
Enter fullscreen mode Exit fullscreen mode

In my case, the following is printed to the console for the four files that I have in that folder:

['/path/to/hello-read-dir-python/docs/../icons/git.png', '/path/to/hello-read-dir-python/docs/../icons/python.png', '/path/to/hello-read-dir-python/docs/../icons/aws.png', '/path/to/hello-read-dir-python/docs/../icons/dok.png']
Enter fullscreen mode Exit fullscreen mode

Now with that list assigned to the variable, we can use that list to iterate through and do what we need to from those files e.g. manipulate the image, read the file contents, write back file contents and more.

Summary

Today's post demonstrated how to use the glob library to programmatically get all the matching files within a folder.

I use techniques such as this within my own blog repository to grab relevant markdown and image files to generate the blog post images or do things with the blog metadata (like creating the list for my home page).

Resources and further reading

  1. The ABCs of Pipenv for the minimum you will need.
  2. Hello, JupyterLab.
  3. glob
  4. os.path

Originally posted on my blog. To see new posts without delay, read the posts there and subscribe to my newsletter.

Top comments (0)