static boolean |
Files.exists(Path path, LinkOption... options) |
ファイルが存在するかどうかをテストします。
|
static Object |
Files.getAttribute(Path path, String attribute, LinkOption... options) |
ファイル属性の値を読み取ります。
|
static <V extends FileAttributeView> V |
Files.getFileAttributeView(Path path, Class<V> type, LinkOption... options) |
指定されたタイプのファイル属性ビューを返します。
|
<V extends FileAttributeView> V |
SecureDirectoryStream.getFileAttributeView(T path, Class<V> type, LinkOption... options) |
このディレクトリ内のファイルのファイル属性にアクセスするための新しいファイル属性ビューを返します。
|
static FileTime |
Files.getLastModifiedTime(Path path, LinkOption... options) |
ファイルの最終変更時間を返します。
|
static UserPrincipal |
Files.getOwner(Path path, LinkOption... options) |
ファイルの所有者を返します。
|
static Set<PosixFilePermission> |
Files.getPosixFilePermissions(Path path, LinkOption... options) |
ファイルのPOSIXファイル・アクセス権を返します。
|
static boolean |
Files.isDirectory(Path path, LinkOption... options) |
ファイルがディレクトリかどうかをテストします。
|
static boolean |
Files.isRegularFile(Path path, LinkOption... options) |
ファイルが不透明な内容の通常ファイルかどうかをテストします。
|
SecureDirectoryStream<T> |
SecureDirectoryStream.newDirectoryStream(T path, LinkOption... options) |
指定されたパスによって識別されるディレクトリを開き、そのディレクトリ内のエントリを反復処理する SecureDirectoryStream を返します。
|
static boolean |
Files.notExists(Path path, LinkOption... options) |
このパスが示すファイルが存在しないかどうかをテストします。
|
static <A extends BasicFileAttributes> A |
Files.readAttributes(Path path, Class<A> type, LinkOption... options) |
一括操作としてファイル属性を読み取ります。
|
static Map<String,Object> |
Files.readAttributes(Path path, String attributes, LinkOption... options) |
一括操作として一連のファイル属性を読み取ります。
|
static Path |
Files.setAttribute(Path path, String attribute, Object value, LinkOption... options) |
ファイル属性の値を設定します。
|
Path |
Path.toRealPath(LinkOption... options) |
既存のファイルの実際のパスを返します。
|