Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getFileAttributeView (0.08 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

        }
    
        protected FileOwnerAttributeView parseFileOwnerAttribute(final ResponseData responseData, final File file) {
            try {
                final FileOwnerAttributeView ownerAttrView = Files.getFileAttributeView(file.toPath(), FileOwnerAttributeView.class);
                if (ownerAttrView != null) {
                    final UserPrincipal owner = ownerAttrView.getOwner();
                    if (owner != null) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

      private static boolean isDirectory(
          SecureDirectoryStream<Path> dir, Path name, LinkOption... options) throws IOException {
        return dir.getFileAttributeView(name, BasicFileAttributeView.class, options)
            .readAttributes()
            .isDirectory();
      }
    
      /**
       * Returns a predicate that returns the result of {@link java.nio.file.Files#isRegularFile(Path,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

      private static boolean isDirectory(
          SecureDirectoryStream<Path> dir, Path name, LinkOption... options) throws IOException {
        return dir.getFileAttributeView(name, BasicFileAttributeView.class, options)
            .readAttributes()
            .isDirectory();
      }
    
      /**
       * Returns a predicate that returns the result of {@link java.nio.file.Files#isRegularFile(Path,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top