本文整理汇总了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);
}
}
示例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);
}
});
示例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);
}
}
}