當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Kudu.deleteFolder方法代碼示例

本文整理匯總了TypeScript中azure-arm-rest/azure-arm-app-service-kudu.Kudu.deleteFolder方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Kudu.deleteFolder方法的具體用法?TypeScript Kudu.deleteFolder怎麽用?TypeScript Kudu.deleteFolder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在azure-arm-rest/azure-arm-app-service-kudu.Kudu的用法示例。


在下文中一共展示了Kudu.deleteFolder方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: runPostDeploymentScript

    public async runPostDeploymentScript(taskParams: TaskParameters, directoryPath?: string): Promise<void> {  
        var uniqueID = this.getDeploymentID();
        let vstsPostDeploymentFolderPath: string = path.join(physicalRootPath.substring(1), '..', 'VSTS_PostDeployment_' + uniqueID);
        try {      
            var rootDirectoryPath = directoryPath || physicalRootPath.substring(1);

            if(taskParams.TakeAppOfflineFlag) {
                await this._appOfflineKuduService(rootDirectoryPath, true);
            }

            var scriptFile = this._getPostDeploymentScript(taskParams.ScriptType, taskParams.InlineScript, taskParams.ScriptPath, taskParams.isLinuxApp);
            var fileExtension : string = taskParams.isLinuxApp ? '.sh' : '.cmd';
            var mainCmdFilePath = path.join(__dirname, '..', 'postDeploymentScript', 'mainCmdFile' + fileExtension);
            await this._appServiceKuduService.uploadFile(vstsPostDeploymentFolderPath, 'mainCmdFile' + fileExtension, mainCmdFilePath);
            await this._appServiceKuduService.uploadFile(vstsPostDeploymentFolderPath, 'kuduPostDeploymentScript' + fileExtension, scriptFile.filePath);
            console.log(tl.loc('ExecuteScriptOnKudu'));
            var cmdFilePath = '%Home%\\site\\VSTS_PostDeployment_' + uniqueID + '\\mainCmdFile' + fileExtension;
            var scriprResultPath = '/site/VSTS_PostDeployment_' + uniqueID;
            if (taskParams.isLinuxApp){
                cmdFilePath = '/home/site/VSTS_PostDeployment_' + uniqueID + '/mainCmdFile' + fileExtension;
            }
            await this.runCommand(rootDirectoryPath, cmdFilePath + ' ' + uniqueID, 30, scriprResultPath, 'script_result.txt');
            await this._printPostDeploymentLogs(vstsPostDeploymentFolderPath);

        }
        catch(error) {
            if(taskParams.UseWebDeploy && taskParams.DeploymentType === DeploymentType.runFromZip) {
                var debugMode = tl.getVariable('system.debug');
                if(debugMode && debugMode.toLowerCase() == 'true') {
                    tl.warning(tl.loc('Publishusingrunfromzipwithpostdeploymentscript'));
                }
                else {
                    console.log(tl.loc('Publishusingrunfromzipwithpostdeploymentscript'));
                }
            }
            throw Error(tl.loc('FailedToRunScriptOnKuduError', error));
        }
        finally {
            try {
                let deleteFilePath = '%Home%\\site\\VSTS_PostDeployment_' + uniqueID + '\\delete_log_file' + fileExtension;
                if(taskParams.isLinuxApp) {
                    deleteFilePath = '/home/site/VSTS_PostDeployment_' + uniqueID + '/delete_log_file' + fileExtension;
                }
                
                await this._appServiceKuduService.uploadFile(vstsPostDeploymentFolderPath, 'delete_log_file' + fileExtension, path.join(__dirname, '..', 'postDeploymentScript', 'deleteLogFile' + fileExtension));
                await this.runCommand(vstsPostDeploymentFolderPath, deleteFilePath);
                await this._appServiceKuduService.deleteFolder(vstsPostDeploymentFolderPath);
            }
            catch(error) {
                tl.debug('Unable to delete log files : ' + error);
            }
            if(taskParams.TakeAppOfflineFlag) {
                await this._appOfflineKuduService(rootDirectoryPath, false);
            }
        }
    }
開發者ID:Microsoft,項目名稱:vsts-tasks,代碼行數:56,代碼來源:KuduServiceUtility.ts


注:本文中的azure-arm-rest/azure-arm-app-service-kudu.Kudu.deleteFolder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。