13 lines
341 B
Python
13 lines
341 B
Python
import os
|
|
from libs.utils.common import *
|
|
|
|
|
|
# Get the application's path (wherever weirdAAL.py is located will be the dirpath )
|
|
dirpath = os.getcwd()
|
|
# The actual location of this file on the filesystem is the "foldername"
|
|
foldername = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
all_files = list_all_files(foldername)
|
|
|
|
__all__ = all_files
|