Saves a file.

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
string StoreFile(
	Stream stream,
	string path
)
Visual Basic
Function StoreFile ( 
	stream As Stream,
	path As String
) As String
Visual C++
String^ StoreFile(
	Stream^ stream, 
	String^ path
)
F#
abstract StoreFile : 
        stream : Stream * 
        path : string -> string 

Parameters

stream
Type: System.IO..::..Stream
File stream.
path
Type: System..::..String
Path of the file to save.

Return Value

Type: String
File path.

See Also