In part 3 of our series on the Python OS module, we’ll show you how to open files using the Python OS module. Launching files or applications is simple with the Python OS module thanks to built-in system commands.

If you missed it, Part 1 of our series on the Python OS module described how to use chdir and getcwd to set your current working directory. Part 2 demonstrated how to list all files and folders in a directory using Python OS.

Recall that during our series on the Python OS module, we’ll be assuming the following directory structure:

raw image

Our first tutorial left off with our current working directory set to C:\main directory using the following script:

import os
os.chdir(r"C:\main directory")
wd = os.getcwd()

This will be our starting point for this week’s tutorial on opening files, but we’ll also show examples for how how to open files, regardless of your current working directory.

Opening files

To open a file using the Python OS module, you need to import the OS module, then call the system() method and pass it the path of your file. It’s important to recognize that the system() command doesn’t open a file behind the scenes for reading or writing (file I/O). It physically launches your file or application on your screen using the default program associated with it. To open files for reading and writing, we have a full tutorial on Python File I/O.

To test this, the following script opens the my_wordfile.docx file in your current working directory using Microsoft Word.

import os
os.system(r"my_wordfile.docx")

Although this script defaults to looking for a file in your current working directory, the system() method actually lets you specify a full file path. To demonstrate this, run the following Python script, which opens a file and then prints a command letting you know the file was opened:

import os
os.system(r"C:\Users\Public\Documents\SampleFile.txt")
print("File opened")

The final part of our series on the Python OS module will explain how to create and remove files and folders on your system. Take a look, and then subscribe using the form below for more free tutorials designed to make you a true Python expert.


Get Our Python Developer Kit for Free

I put together a Python Developer Kit with over 100 pre-built Python scripts covering data structures, Pandas, NumPy, Seaborn, machine learning, file processing, web scraping and a whole lot more - and I want you to have it for free. Enter your email address below and I'll send a copy your way.

Yes, I'll take a free Python Developer Kit