Overview
| Comment: | [build] purge.py to delete cruft |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | build |
| Files: | files | file ages | folders |
| SHA3-256: |
7b317c7a0a4bbb6808907c22bc4e133d |
| User & Date: | olr on 2020-07-22 15:44:13 |
| Other Links: | manifest | tags |
Context
|
2020-07-22
| ||
| 18:19 | [fr] ajustements check-in: b394b93d8b user: olr tags: trunk, fr | |
| 15:44 | [build] purge.py to delete cruft check-in: 7b317c7a0a user: olr tags: trunk, build | |
| 15:27 | [fr] ajustements check-in: e4eca0fcce user: olr tags: trunk, fr | |
Changes
Modified helpers.py from [36dfdf0199] to [55556da673].
| ︙ | ︙ | |||
43 44 45 46 47 48 49 |
"unzip file <spfZip> at <spfDest>"
if spDest:
if bCreatePath and not os.path.exists(spDest):
os.makedirs(spDest, exist_ok=True)
print("> unzip in: "+ spDest)
spInstall = os.path.abspath(spDest)
if os.path.isdir(spInstall):
| | | | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
"unzip file <spfZip> at <spfDest>"
if spDest:
if bCreatePath and not os.path.exists(spDest):
os.makedirs(spDest, exist_ok=True)
print("> unzip in: "+ spDest)
spInstall = os.path.abspath(spDest)
if os.path.isdir(spInstall):
eraseFolderContent(spInstall)
with zipfile.ZipFile(spfZip) as hZip:
hZip.extractall(spDest)
else:
print("# folder <" + spDest + "> not found")
else:
print("path destination is empty")
def eraseFolderContent (sp):
"erase content of a folder"
for sf in os.listdir(sp):
spf = os.path.join(sp, sf)
try:
if os.path.isfile(spf):
os.unlink(spf)
elif os.path.isdir(spf):
shutil.rmtree(spf)
except (OSError, shutil.Error) as e:
print(e)
def createCleanFolder (sp):
"make an empty folder or erase its content if not empty"
if not os.path.exists(sp):
os.makedirs(sp, exist_ok=True)
else:
eraseFolderContent(sp)
def copyFolder (spSrc, spDst):
"copy folder content from src to dst"
try:
shutil.copytree(spSrc, spDst)
except OSError as e:
|
| ︙ | ︙ |
Added purge.py version [b56a852cf2].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# Python
import os
import argparse
import sys
import shutil
import helpers
def getFolders (sp):
for sf in os.listdir(sp):
if os.path.isdir(sp+"/"+sf):
yield from getFolders(sp+"/"+sf)
yield (sf, sp+"/"+sf)
def purge (sFolderName, bDeleteContentOnly):
for sf, sp in getFolders("."):
if sf == sFolderName:
if bDeleteContentOnly:
helpers.eraseFolderContent(sp)
print(sp, "[content deleted]")
else:
shutil.rmtree(sp)
print(sp, "[erased]")
def main ():
"purge cruft and other files"
print("Python: " + sys.version)
if sys.version < "3.7":
print("Python 3.7+ required")
return
xParser = argparse.ArgumentParser()
xParser.add_argument("-b", "--build", help="purge _build", action="store_true")
xArgs = xParser.parse_args()
purge("__pycache__", False)
if xArgs.build:
purge("_build", True)
if __name__ == '__main__':
main()
|