コード例 #1
0
 def write(self, path, data):
     LocalOperation.mkdir(os.path.dirname(path))
     with open(path, "w+") as stream:
         yaml.dump(data,
                   stream,
                   allow_unicode=True,
                   default_flow_style=False)
コード例 #2
0
def _init():
    if not LocalOperation.exist(GPM_SRC):
        LocalOperation.mkdir(GPM_SRC)
コード例 #3
0
ファイル: sdb.py プロジェクト: galileo-project/Galileo-gpm
 def __file_exist(self):
     db_dir = os.path.dirname(self.__path)
     if not LocalOperation.exist(db_dir):
         LocalOperation.mkdir(db_dir)
     return LocalOperation.exist(self.__path)
コード例 #4
0
ファイル: sdb.py プロジェクト: galileo-project/Galileo-gpm
 def __file_exist(self):
     db_dir = os.path.dirname(self.__path)
     if not LocalOperation.exist(db_dir):
         LocalOperation.mkdir(db_dir)
     return LocalOperation.exist(self.__path)
コード例 #5
0
ファイル: conf.py プロジェクト: galileo-project/Galileo-gpm
 def write(self, path, data):
     LocalOperation.mkdir(os.path.dirname(path))
     with open(path, "w+") as stream:
         yaml.dump(data, stream, allow_unicode=True, default_flow_style=False)