Save File

Namespace: LLCryptoLib.Utils
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public bool SaveFile(
	string absolutePath,
	string contents
)
Visual Basic
Public Function SaveFile ( _
	absolutePath As String, _
	contents As String _
) As Boolean
Visual C++
public:
bool SaveFile(
	String^ absolutePath, 
	String^ contents
)

Parameters

absolutePath
Type: System..::..String
Absolute path of file to save
contents
Type: System..::..String
String contents

Return Value

True, if file was correctly saved. If false, read ErrorMessage property to know what happened

See Also