Interface FilePart
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Stringfilename()Return the original filename in the client's filesystem.default reactor.core.publisher.Mono<Void>transferTo(File dest)Convenience method to copy the content of the file in this part to the given destination file.reactor.core.publisher.Mono<Void>transferTo(Path dest)Convenience method to copy the content of the file in this part to the given destination file.
Method Detail
transferTo
default reactor.core.publisher.Mono<Void> transferTo(File dest)
Convenience method to copy the content of the file in this part to the given destination file. If the destination file already exists, it will be truncated first.The default implementation delegates to
transferTo(Path).- Parameters:
dest- the target file- Returns:
- completion
Monowith the result of the file transfer, possiblyIllegalStateExceptionif the part isn't a file - See Also:
transferTo(Path)
transferTo
reactor.core.publisher.Mono<Void> transferTo(Path dest)
Convenience method to copy the content of the file in this part to the given destination file. If the destination file already exists, it will be truncated first.- Parameters:
dest- the target file- Returns:
- completion
Monowith the result of the file transfer, possiblyIllegalStateExceptionif the part isn't a file - Since:
- 5.1
- See Also:
transferTo(File)