예제 #1
0
def unzip(zipFileName, filePathsToUnzip):
    ok = FileUtils.unzip(file(zipFileName), filePathsToUnzip)
    if (not ok):
        printf('Failed to unzip %s cleanly', zipFileName)
예제 #2
0
def unzipAll(zipFileName):
    ok = FileUtils.unzip(file(zipFileName))
    if (not ok):
        printf('Failed to unzip %s cleanly', zipFileName)
예제 #3
0
def copy(src, dest):
    ok = FileUtils.copy(file(src), file(dest))
    if (not ok):
        printf('Failed to copy %s', src)
예제 #4
0
파일: boot.py 프로젝트: crwulff/zamiacad
def unzip(zipFileName, filePathsToUnzip):
  ok = FileUtils.unzip(file(zipFileName), filePathsToUnzip)
  if (not ok):
    printf('Failed to unzip %s cleanly', zipFileName)
예제 #5
0
파일: boot.py 프로젝트: crwulff/zamiacad
def unzipAll(zipFileName):
  ok = FileUtils.unzip(file(zipFileName))
  if (not ok):
    printf('Failed to unzip %s cleanly', zipFileName)
예제 #6
0
파일: boot.py 프로젝트: crwulff/zamiacad
def copy(src, dest):
  ok = FileUtils.copy(file(src), file(dest))
  if (not ok):
    printf('Failed to copy %s', src)