本文整理汇总了Python中exe.engine.path.TempDirPath.chdir方法的典型用法代码示例。如果您正苦于以下问题:Python TempDirPath.chdir方法的具体用法?Python TempDirPath.chdir怎么用?Python TempDirPath.chdir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类exe.engine.path.TempDirPath
的用法示例。
在下文中一共展示了TempDirPath.chdir方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Exception
# 需要导入模块: from exe.engine.path import TempDirPath [as 别名]
# 或者: from exe.engine.path.TempDirPath import chdir [as 别名]
raise Exception('You need to copy the firefox installation to "exe/webui/firefox"')
packages = (exeDir / "..").glob("*.deb")
if not packages:
print "No packages found"
sys.exit(1)
packages.sort()
package = packages[-1]
tmp = None
if "index" in sys.argv:
print "Creating Index..."
tmp = TempDirPath()
pool = tmp / "pool"
pool.mkdir()
package.copyfile(pool / package.basename())
pool.chdir()
tmp.chdir()
os.system("dpkg-scanpackages pool /dev/null | gzip -9c > pool/Packages.gz")
if "copy" in sys.argv:
if "index" in sys.argv:
print "copying index file to", exeDir
(pool / "Packages.gz").copy(exeDir)
pool = exeDir
if server:
print "connecting to %s..." % server
from socket import socket, gethostbyname
s = socket()
s.connect((gethostbyname(server), 22))
t = Transport(s)
t.connect()
t.auth_password(sys.argv[-1], password)