Learn practical skills, build real-world projects, and advance your career
import os
os.getcwd()
'C:\\Users\\USER\\Documents\\Coding\\Python Scripts'
help(os.listdir)
Help on built-in function listdir in module nt: listdir(path=None) Return a list containing the names of the files in the directory. path can be specified as either str, bytes, or a path-like object. If path is bytes, the filenames returned will also be bytes; in all other circumstances the filenames returned will be str. If path is None, uses the path='.'. On some platforms, path may also be specified as an open file descriptor;\ the file descriptor must refer to a directory. If this functionality is unavailable, using it raises NotImplementedError. The list is in arbitrary order. It does not include the special entries '.' and '..' even if they are present in the directory.
os.listdir(".")
['.ipynb_checkpoints',
 '.jovianrc',
 'data',
 'python-os-and-filesystem-prac.ipynb']
os.listdir('/usr')
--------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) <ipython-input-11-dd3cdac3e5ab> in <module> ----> 1 os.listdir('/usr') FileNotFoundError: [WinError 3] The system cannot find the path specified: '/usr'