コード例 #1
0
ファイル: models.py プロジェクト: djangozoom/merengue_plugins
 def get_root_path(self):
     return os.path.join(get_root_location(), force_unicode(self.name))
コード例 #2
0
ファイル: models.py プロジェクト: teury/merengueproj
 def get_root_path(self):
     return os.path.join(get_root_location(), force_unicode(self.name))
コード例 #3
0
ファイル: models.py プロジェクト: djangozoom/merengue_plugins
 def rebuild_if_missing(self):
     if not os.path.exists(get_root_location()):
         os.mkdir(get_root_location())
     if not os.path.exists(self.get_root_path()):
         os.mkdir(self.get_root_path())
コード例 #4
0
ファイル: models.py プロジェクト: teury/merengueproj
 def rebuild_if_missing(self):
     if not os.path.exists(get_root_location()):
         os.mkdir(get_root_location())
     if not os.path.exists(self.get_root_path()):
         os.mkdir(self.get_root_path())