def get_files()

in config_operator/config_operator/config_source/LocalDirConfig.py [0:0]


    def get_files(self):
        files = []
        for f in os.listdir(self._local_dir):
            if os.path.isfile(os.path.join(self._local_dir, f)) \
                    and 'README' not in f \
                    and not f.startswith('.'):
                files.append(f)

        return files