def deleteLastSessionData(self): #全て消してから新たに作成する dirPath = Config.getConf('CostManageAutoDLinfo', 'download_path') FileOperationLib.deleteDir(dirPath) FileOperationLib.makeDir(dirPath) #Zipファイル FileOperationLib.deleteFile(Config.getConf('CostManageAutoDLinfo', 'output_path') + 'cost_manage.zip')
def deleteLastSessionData(self): #全て消してから新たに作成する dirPath = Config.getConf('TimeRecordAutoDLinfo', 'download_path') FileOperationLib.deleteDir(dirPath) FileOperationLib.makeDir(dirPath) #Zipファイル FileOperationLib.deleteFile(Config.getConf('TimeRecordAutoDLinfo', 'output_path') + 'time_sheet.zip')
def makeEmployeeDir(self, employeeName): dirPath = Config.getConf('CostManageAutoDLinfo', 'download_path') + employeeName + '/' FileOperationLib.makeDir(dirPath) return dirPath