Top "Python-os" questions

The Python os module provides a portable way of using operating system dependent functionality.

AttributeError: 'module' object has no attribute 'scandir'

I have no idea why this is happening. Here's the function: def scanWallDir(basedir, scansubdirs=True): wallsOut = [] for entry in …

python python-3.x scandir python-os
Python: Check if a directory exists using os module

I'm trying to validate if a directory received as user input exists using the os module This is how I'm …

python python-3.x validation input python-os
AttributeError: 'module' object has no attribute 'exist'

I want to check if a file exists and if it does give the folder i create with mkdir the …

python directory python-os
Difference between os.getlogin() and os.environ for getting Username

Is there a difference between using os.getlogin() and os.environ for getting the current user's username on Linux? At …

python linux python-3.x python-os