def removeGeneratedFiles():
	'Remove generated files.'
	svgFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(['svg'])
	for svgFilePath in svgFilePaths:
		if archive.getEndsWithList(svgFilePath, ['_bottom.svg', '_carve.svg', '_chop.svg', '_cleave.svg']):
			os.remove(svgFilePath)
			print('removeGeneratedFiles deleted ' + svgFilePath)
	gcodeFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(['gcode'])
	for gcodeFilePath in gcodeFilePaths:
		if 'alterations' not in gcodeFilePath:
			os.remove(gcodeFilePath)
			print('removeGeneratedFiles deleted ' + gcodeFilePath)
	archive.removeBackupFilesByTypes(['gcode', 'svg', 'xml'])
Example #2
0
def removeGeneratedFiles():
	'Remove generated files.'
	csvFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(['csv'])
	for csvFilePath in csvFilePaths:
		removeCSVFile(csvFilePath)
	gcodeFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(['gcode'])
	for gcodeFilePath in gcodeFilePaths:
		removeGcodeFile(gcodeFilePath)
	svgFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(['svg'])
	for svgFilePath in svgFilePaths:
		removeSVGFile(svgFilePath)
	xmlFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(['xml'])
	for xmlFilePath in xmlFilePaths:
		removeXMLFile(xmlFilePath)
	archive.removeBackupFilesByTypes(['gcode', 'svg', 'xml'])
Example #3
0
def removeGeneratedFiles():
    'Remove generated files.'
    svgFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(
        ['svg'])
    for svgFilePath in svgFilePaths:
        if archive.getEndsWithList(
                svgFilePath,
            ['_bottom.svg', '_carve.svg', '_chop.svg', '_cleave.svg']):
            os.remove(svgFilePath)
            print('removeGeneratedFiles deleted ' + svgFilePath)
    gcodeFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(
        ['gcode'])
    for gcodeFilePath in gcodeFilePaths:
        if 'alterations' not in gcodeFilePath:
            os.remove(gcodeFilePath)
            print('removeGeneratedFiles deleted ' + gcodeFilePath)
    archive.removeBackupFilesByTypes(['gcode', 'svg', 'xml'])
Example #4
0
def removeGeneratedFiles():
    "Remove generated files."
    gcodeFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(["gcode"])
    for gcodeFilePath in gcodeFilePaths:
        if "alterations" not in gcodeFilePath:
            os.remove(gcodeFilePath)
            print("removeGeneratedFiles deleted " + gcodeFilePath)
    svgFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(["svg"])
    for svgFilePath in svgFilePaths:
        if archive.getEndsWithList(svgFilePath, ["_bottom.svg", "_carve.svg", "_chop.svg", "_cleave.svg"]):
            os.remove(svgFilePath)
            print("removeGeneratedFiles deleted " + svgFilePath)
    xmlFilePaths = archive.getFilesWithFileTypesWithoutWordsRecursively(["xml"])
    for xmlFilePath in xmlFilePaths:
        if archive.getEndsWithList(xmlFilePath, ["_interpret.xml"]):
            os.remove(xmlFilePath)
            print("removeGeneratedFiles deleted " + xmlFilePath)
    archive.removeBackupFilesByTypes(["gcode", "svg", "xml"])