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


Java DosFileAttributes.isHidden方法代码示例

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


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

示例1: toString

import java.nio.file.attribute.DosFileAttributes; //导入方法依赖的package包/类
public static String toString(DosFileAttributes dosFileAttributes) {
    StringBuilder builder = new StringBuilder();
    if (dosFileAttributes.isArchive()) {
        builder.append('A');
    }
    if (dosFileAttributes.isHidden()) {
        builder.append('H');
    }
    if (dosFileAttributes.isReadOnly()) {
        builder.append('R');
    }
    if (dosFileAttributes.isSystem()) {
        builder.append('S');
    }
    return builder.toString();
}
 
开发者ID:evrignaud,项目名称:fim,代码行数:17,代码来源:DosFilePermissions.java

示例2: isHidden

import java.nio.file.attribute.DosFileAttributes; //导入方法依赖的package包/类
@Override
public boolean isHidden(Path path) throws IOException {
    EphemeralFsFileSystem fs = getFs(path);
    if(!fs.getSettings().isPosix()) {
        DosFileAttributes atts = readAttributes(path, DosFileAttributes.class);
        if(atts.isDirectory()) {
            return false;
        }
        return atts.isHidden();    
    }
    return path.getFileName().toString().startsWith(".");
}
 
开发者ID:sbridges,项目名称:ephemeralfs,代码行数:13,代码来源:EphemeralFsFileSystemProvider.java

示例3: setFileHiddenAttribute

import java.nio.file.attribute.DosFileAttributes; //导入方法依赖的package包/类
@Override
public void setFileHiddenAttribute(
                                    String sourceFile,
                                    boolean hidden ) {

    sourceFile = IoUtils.normalizeFilePath(sourceFile, osType);
    checkFileExistence(new File(sourceFile));

    final String errMsg = "Could not " + (hidden
                                                 ? "set"
                                                 : "unset")
                          + " the hidden attribute of file '" + sourceFile + "'";
    if (OperatingSystemType.getCurrentOsType().isWindows()) {
        try {
            Path path = Paths.get(sourceFile);
            DosFileAttributes attr;
            attr = Files.readAttributes(path, DosFileAttributes.class, LinkOption.NOFOLLOW_LINKS);

            boolean goHidden = attr.isHidden();
            if (!hidden && goHidden) {
                Files.setAttribute(path, "dos:hidden", false, LinkOption.NOFOLLOW_LINKS);
            } else if (hidden && !goHidden) {
                Files.setAttribute(path, "dos:hidden", true, LinkOption.NOFOLLOW_LINKS);
            }
        } catch (IOException e) {
            throw new FileSystemOperationException(errMsg, e);
        }
    } else if (OperatingSystemType.getCurrentOsType().isUnix()) {
        // a '.' prefix makes the file hidden
        String filePath = IoUtils.getFilePath(sourceFile);
        String fileName = IoUtils.getFileName(sourceFile);
        if (hidden) {
            if (fileName.startsWith(".")) {
                log.warn("File '" + sourceFile + "' is already hidden. No changes are made!");
                return;
            } else {
                fileName = "." + fileName;
            }
        } else {
            if (!fileName.startsWith(".")) {
                log.warn("File '" + sourceFile + "' is already NOT hidden. No changes are made!");
                return;
            } else {
                fileName = fileName.substring(1);
            }
        }
        renameFile(sourceFile, filePath + fileName, false);
    } else {
        throw new FileSystemOperationException(errMsg + ": Unknown OS type");
    }
}
 
开发者ID:Axway,项目名称:ats-framework,代码行数:52,代码来源:LocalFileSystemOperations.java


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