< prev index next >

src/java.base/unix/classes/sun/nio/fs/UnixFileSystem.java

Print this page
rev 59383 : [mq]: final
   1 /*
   2  * Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  73                 }
  74             }
  75             this.needToResolveAgainstDefaultDirectory = !defaultIsCwd;
  76         }
  77 
  78         // the root directory
  79         this.rootDirectory = new UnixPath(this, "/");
  80     }
  81 
  82     // package-private
  83     byte[] defaultDirectory() {
  84         return defaultDirectory;
  85     }
  86 
  87     boolean needToResolveAgainstDefaultDirectory() {
  88         return needToResolveAgainstDefaultDirectory;
  89     }
  90 
  91     UnixPath rootDirectory() {
  92         return rootDirectory;
  93     }
  94 
  95     boolean isSolaris() {
  96         return false;
  97     }
  98 
  99     static List<String> standardFileAttributeViews() {
 100         return Arrays.asList("basic", "posix", "unix", "owner");
 101     }
 102 
 103     @Override
 104     public final FileSystemProvider provider() {
 105         return provider;
 106     }
 107 
 108     @Override
 109     public final String getSeparator() {
 110         return "/";
 111     }
 112 
 113     @Override
 114     public final boolean isOpen() {
 115         return true;
 116     }


   1 /*
   2  * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  73                 }
  74             }
  75             this.needToResolveAgainstDefaultDirectory = !defaultIsCwd;
  76         }
  77 
  78         // the root directory
  79         this.rootDirectory = new UnixPath(this, "/");
  80     }
  81 
  82     // package-private
  83     byte[] defaultDirectory() {
  84         return defaultDirectory;
  85     }
  86 
  87     boolean needToResolveAgainstDefaultDirectory() {
  88         return needToResolveAgainstDefaultDirectory;
  89     }
  90 
  91     UnixPath rootDirectory() {
  92         return rootDirectory;




  93     }
  94 
  95     static List<String> standardFileAttributeViews() {
  96         return Arrays.asList("basic", "posix", "unix", "owner");
  97     }
  98 
  99     @Override
 100     public final FileSystemProvider provider() {
 101         return provider;
 102     }
 103 
 104     @Override
 105     public final String getSeparator() {
 106         return "/";
 107     }
 108 
 109     @Override
 110     public final boolean isOpen() {
 111         return true;
 112     }


< prev index next >