| Method and Description |
|---|
| fr.flowarg.flowio.FileUtils.createFile(File)
since 1.2.4. use
Files.createFile(Path, FileAttribute[])
Will be removed in a future release. |
| fr.flowarg.flowio.FileUtils.getFileSizeBytes(File)
Deprecated since 1.2.7. Use
FileUtils.getFileSizeBytes(Path) instead.
Will be removed in a future release. |
| fr.flowarg.flowio.FileUtils.getFileSizeKiloBytes(File)
Deprecated since 1.2.7. Use
FileUtils.getFileSizeKiloBytes(Path) instead.
Will be removed in a future release. |
| fr.flowarg.flowio.FileUtils.getFileSizeMegaBytes(File)
Deprecated since 1.2.7. Use
FileUtils.getFileSizeMegaBytes(Path) instead.
Will be removed in a future release. |
| fr.flowarg.flowio.FileUtils.loadFile(File)
Deprecated since 1.2.4. Use
Files.readAllLines(Path, Charset) instead.
Will be removed in a future release. |
| fr.flowarg.flowio.FileUtils.saveFile(File, String)
since 1.2.4. Use
Files.write(Path, Iterable, Charset, OpenOption...) instead.
Will be removed in a future release. |