A convenience method to write an uploaded part to disk. The client code is not concerned with whether the part is stored in memory, or on disk in a temporary location. They just want to write the uploaded part to a file. This method is not guaranteed to succeed if called more than once for the same
(String fileName)
| 81 | * @throws IOException if an I/O occurs while attempting to write the part |
| 82 | */ |
| 83 | void write(String fileName) throws IOException; |
| 84 | |
| 85 | /** |
| 86 | * Deletes the underlying storage for a part, including deleting any associated temporary disk file. Although the |
no outgoing calls