[This is preliminary documentation and is subject to change.]

Gets or sets intermediate directory where temporary files are stored

Namespace: Tools.TotalCommanderT.PluginBuilder
Assembly: TCPluginBuilder (in TCPluginBuilder.exe) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public string IntermediateDirectory { get; set; }
Visual Basic
Public Property IntermediateDirectory As String
	Get
	Set
Visual C++
public:
property String^ IntermediateDirectory {
	String^ get ();
	void set (String^ value);
}
F#
member IntermediateDirectory : string with get, set
JScript
function get IntermediateDirectory () : String
function set IntermediateDirectory (value : String)

Field Value

Intermediate directory to store temporary files in. Null to chose directory automatically

Return Value

Intermediate directory to store temporary files in

Remarks

{0} is replaced by plugin name. When such directory does not exist, it is created. Setting this property to null, sets CleanIntermediateDirectory to true.

See Also