Search For A File Using Python
If you are a coder, then surely you must have came across a requirement wherein you need to search for a file in a given directory. Now, this directory could be any directory — it could be your immediate parent directory or it could be a grand grand parent. In this article, I’ll explain you about how can you search for a file in a given directory using Python. Required Package To perform file search, we only need a package named os and this can be imported using below line of code: import os Python Copy Code To Search A File Here are the few lines of code to perform this task: rootDir = “C : \\Py_Channel” fileToSearch = “activate . bat” for relPath , dirs , files in os . walk ( rootDir ) : if ( fileToSearch in files ) : fullPath = os . path . join ( rootDir , relPath , fileToSearch ) print ( fullPath ) Python Copy In above code, rootDir is the top-level directory in which we want to perform search and fileToSearch is holding the file name, we want to search. os...