Description
-
Decodes file encoded with UU encoding.
Return Type
-
None
Syntax
-
object.Uudecode InFile,
OutFile
The Uudecode Method syntax has these parts:
object |
An expression
evaluating to an object of type Pop3Decoder. |
InFile |
Required. A String
value. Full path to a file that will be decoded. |
OutFile |
Required. A String
value. Full path to a file on disk where will decoded
file is saved. |
Remarks
-
Uudecode method will decode file specified in
InFile parameter and store it to
file specified in OutFile
parameter. UU decoding will be used, no matter if InFile is
encoded using same algorithm or not. If InFile is invalid
(for example different encoding), unexpected results may
occur, but mostly invalid OutFile will be saved. If result
file exists, it will be truncated.
No headers are read or used from current message object.
If you want to save attachment, you should use
Attachment.Save method
instead.
|