203204205206207208209
/** * @return The FileSystem implementation for the OS */ protected FileSystem getFileSystem() { return Windows.isWindows() ? new WindowsFileSystem(this) : new FileSystemImpl(this); }