danixfs/danix/utils.py

4 lines
73 B
Python

import os
def is_root():
return True if os.geteuid() == 0 else False