当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript FileTree.isResourceFolder方法代码示例

本文整理汇总了TypeScript中tree.FileTree.isResourceFolder方法的典型用法代码示例。如果您正苦于以下问题:TypeScript FileTree.isResourceFolder方法的具体用法?TypeScript FileTree.isResourceFolder怎么用?TypeScript FileTree.isResourceFolder使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tree.FileTree的用法示例。


在下文中一共展示了FileTree.isResourceFolder方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: exploreDirectory

 export function exploreDirectory(resourcePath: FilePath) {
    if(FileTree.isResourceFolder(resourcePath.getFilePath())) {
       var message = {
          project : Common.getProjectName(),
          resource : resourcePath.getFilePath(),
          terminal: false
       };
       EventBus.sendEvent("EXPLORE", message);
    }
 }
开发者ID:snapscript,项目名称:snap-develop,代码行数:10,代码来源:commands.ts

示例2: function

 DialogBuilder.newDirectoryTreeDialog(resourcePath, true, function(resourceDetails: FilePath) {
    if(FileTree.isResourceFolder(resourceDetails.getFilePath())) {
       var message = {
          project : Common.getProjectName(),
          resource : resourceDetails.getFilePath(),
          source : "",
          directory: true,
          create: true
       };
       ProcessConsole.clearConsole();
       EventBus.sendEvent("SAVE", message);
    }
 });
开发者ID:snapscript,项目名称:snap-develop,代码行数:13,代码来源:commands.ts

示例3: handleTreeMenu

 function handleTreeMenu(resourcePath: FilePath, commandName, elementId, isDirectory) {
    if(commandName == "runScript") {
       openTreeFile(resourcePath.getResourcePath(), function(){
          Command.runScript();
       });
    } else if(commandName == "debugScript") {
       openTreeFile(resourcePath.getResourcePath(), function(){
          Command.debugScript();
       });
    } else if(commandName == "createArchive") {
       var savePath: FilePath = FileTree.createResourcePath("/" + Common.getProjectName() + ".jar");
       Command.createArchive(savePath, resourcePath);      
    }else if(commandName == "newFile") {
       Command.newFile(resourcePath);
    }else if(commandName == "newDirectory") {
       Command.newDirectory(resourcePath);
    }else if(commandName == "exploreDirectory") {
       Command.exploreDirectory(resourcePath);
    }else if(commandName == "openTerminal") {
       Command.openTerminal(resourcePath);
    }else if(commandName == "renameFile") {
       if(isDirectory) {
          Command.renameDirectory(resourcePath);
       } else {
          Command.renameFile(resourcePath);
       }
    }else if(commandName == "saveFile") {
       openTreeFile(resourcePath.getResourcePath(), function(){
          Command.saveFile();
       });
    }else if(commandName == "deleteFile") {
       if(FileTree.isResourceFolder(resourcePath.getResourcePath())) {
          Command.deleteDirectory(resourcePath);
       } else {
          Command.deleteFile(resourcePath);
       }
    }
 }
开发者ID:snapscript,项目名称:snap-develop,代码行数:38,代码来源:explorer.ts


注:本文中的tree.FileTree.isResourceFolder方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。