コード例 #1
0
    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')
コード例 #2
0
    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')
コード例 #3
0
    def makeEmployeeDir(self, employeeName):
        dirPath = Config.getConf('CostManageAutoDLinfo', 'download_path') + employeeName + '/'
        FileOperationLib.makeDir(dirPath)

        return dirPath