FileExistsMatcher matcher = new FileExistsMatcher((File) this.value, FileExistsMatcherType.ISEXISTS);
return this.assertThat(matcher);
}
public IFileAssert unExists() {
FileExistsMatcher matcher = new FileExistsMatcher((File) this.value, FileExistsMatcherType.UNEXISTS);
return this.assertThat(matcher);
}