本文整理汇总了Python中FileSystem.FileSystem.createSrcDir方法的典型用法代码示例。如果您正苦于以下问题:Python FileSystem.createSrcDir方法的具体用法?Python FileSystem.createSrcDir怎么用?Python FileSystem.createSrcDir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileSystem.FileSystem
的用法示例。
在下文中一共展示了FileSystem.createSrcDir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: len
# 需要导入模块: from FileSystem import FileSystem [as 别名]
# 或者: from FileSystem.FileSystem import createSrcDir [as 别名]
import os.path
import sys
sys.path.append("util")
from FileSystem import FileSystem
sys.path.append(FileSystem.getRootDir())
sys.path.append(FileSystem.getSiteDir())
if len(sys.argv) == 2:
projectName = sys.argv[1]
else:
print("Usage: ./StartProject.py [projectname]")
sys.exit()
dirName = FileSystem.createSrcDir(projectName)
path = os.path.join(dirName, projectName + ".py")
strImport = "\
import sys\n\
import os.path\n\
sys.path.append('../../util')\n\
from FileSystem import FileSystem\n\
sys.path.append(FileSystem.getRootDir())\n\
sys.path.append(FileSystem.getSiteDir())\n\
from DBSetup import DBSetup\n\
from lyticssite.forumModels.models import *\n\
from lyticssite.generalModels.models import *\n\
from lyticssite.hashMapModels.models import *\n\
from lyticssite.eventModels.models import *\n\
from Controller import Controller\n\