本文整理汇总了Java中com.intellij.openapi.util.io.FileUtilRt.getRelativePath方法的典型用法代码示例。如果您正苦于以下问题:Java FileUtilRt.getRelativePath方法的具体用法?Java FileUtilRt.getRelativePath怎么用?Java FileUtilRt.getRelativePath使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.util.io.FileUtilRt
的用法示例。
在下文中一共展示了FileUtilRt.getRelativePath方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isResourceFile
import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
public boolean isResourceFile(File file, @NotNull final File srcRoot) {
final String name = file.getName();
final String relativePathToParent;
final String parentPath = file.getParent();
if (parentPath != null) {
relativePathToParent = "/" + FileUtilRt.getRelativePath(FileUtilRt.toSystemIndependentName(srcRoot.getAbsolutePath()), FileUtilRt.toSystemIndependentName(parentPath), '/', SystemInfo.isFileSystemCaseSensitive);
}
else {
relativePathToParent = null;
}
for (CompiledPattern pair : myCompiledPatterns) {
if (matches(name, relativePathToParent, srcRoot, pair)) {
return true;
}
}
if (myNegatedCompiledPatterns.isEmpty()) {
return false;
}
//noinspection ForLoopReplaceableByForEach
for (int i = 0; i < myNegatedCompiledPatterns.size(); i++) {
if (matches(name, relativePathToParent, srcRoot, myNegatedCompiledPatterns.get(i))) {
return false;
}
}
return true;
}
示例2: getQualifiedName
import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
@Nullable
private static String getQualifiedName(File root, File classFile) {
String relativePath = FileUtilRt.getRelativePath(root, classFile);
if (relativePath == null) {
return null;
}
return FileUtilRt.getNameWithoutExtension(FileUtilRt.toSystemIndependentName(relativePath)).replace('/', '.');
}
示例3: getRelativeUrl
import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
public static String getRelativeUrl(@NotNull String parentUrl, @NotNull String childUrl) {
return FileUtilRt.getRelativePath(parentUrl, childUrl, '/', true);
}
示例4: getRelativePath
import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
public static String getRelativePath(@NotNull String parentPath, @NotNull String childPath) {
return FileUtilRt.getRelativePath(FileUtil.toSystemIndependentName(parentPath), FileUtil.toSystemIndependentName(childPath), '/');
}