java.nio.file.FileSystemは、ファイルシステムに関連する操作を扱う抽象クラスです。
java.nio.file.FileSystemの特徴
java.nio.file.FileSystemは以下の特徴があります。
- 異なるファイルシステムにアクセスするための共通の方法を提供する
(プラットフォームの違いを意識しなくてもよい) - Java SE7で導入された
java.nio.file.FileSystemのAPI
コンストラクタ名 | 説明 |
---|---|
FileSystem() | 新しいインスタンスを生成する |
戻値型 | メソッド | 静的 | 説明 |
---|---|---|---|
void | close() | このファイル・システムを閉じる | |
Iterable | getFileStores() | ベースとなるファイル・ストアを反復するためのオブジェクトを返す | |
Path | getPath(String first, String… more) | パス文字列をPathに変換する | |
PathMatcher | getPathMatcher(String syntaxAndPattern) | 指定されたパターンからPathMathcerを返す | |
Iterable<Path> | getRootDirectories() | ルートディレクトリパスを反復するためのオブジェクトを返す | |
String | getSeparator() | 文字列として表された名前区切り文字を返す | |
UserPrincipalLookupService | getUserPrincipalLookupService() | このファイル・システムのUserPrincipalLookupServiceを返す | |
boolean | isOpen() | このファイルシステムが開いているかどうか | |
boolean | isReadOnly() | 読取り専用アクセスのみを許可するかどうか | |
WatchService | newWatchService() | 新しいWatchServiceを構築する | |
FileSystemProvider | provider() | このファイルシステムの作成元プロバイダを返す | |
Set<String> | supportedFileAttributeViews() | サポートされるファイル属性ビューの名前のセットを返す |
※メソッドはすべて抽象メソッドです。
java.nio.file.FileSystemサンプル
- (FileSystemを使用したサンプル)
-
import java.nio.file.*; public class FileSystemSample { public static void main(String[] args) throws Exception { //デフォルトのファイルシステムを取得する FileSystem fs = FileSystems.getDefault(); //ファイルを作成する Path filePath = fs.getPath("sample.txt"); Files.createFile(filePath); //ディレクトリを作成する Path dirPath = fs.getPath("mydir"); Files.createDirectory(dirPath); //ファイルをコピーする Path copyPath = fs.getPath("copy.txt"); Files.copy(filePath, copyPath, StandardCopyOption.REPLACE_EXISTING); //ファイルを削除する Files.delete(copyPath); } }
コメント