Soap.OPConvert.IOPConvert.TempDir

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property TempDir: string read GetTempDir write SetTempDir;

C++

__property System::UnicodeString TempDir = {read=GetTempDir, write=SetTempDir};

Properties

Type Visibility Source Unit Parent
property public
Soap.OPConvert.pas
Soap.OPConvert.hpp
Soap.OPConvert IOPConvert

Description

Specifies the directory where temporary files for attachments are saved.

When the application receives an attachment as the value of a parameter (or the return value) of the current method on the invokable interface, it writes the attachment to a temporary file. This temporary file becomes the value of the CacheFile property on the TSoapAttachment object that represents the attachment.

Use TempDir to specify the directory where temporary files for attachments are written.

Note: If TempDir is not set, the application uses the default temporary directory. On Windows, this is the directory that the Windows API GetTempPath returns. On Linux, this is obtained from the TMPDIR environment setting (or, if TMPDIR is not set, /tmp/)

See Also