1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
.TH CosFileTransfer_VirtualFileSystem 3 "cosFileTransfer 1.1.5" "Ericsson AB" "ERLANG MODULE DEFINITION"
.SH MODULE
CosFileTransfer_VirtualFileSystem \- This module implements the OMG CosFileTransfer::VirtualFileSystem interface\&.
.SH DESCRIPTION
.LP
To get access to the record definitions for the structures use:
.br
\fI-include_lib("cosFileTransfer/include/*\&.hrl")\&.\fR
.SH EXPORTS
.LP
.B
\&'_get_file_system_type\&'(VFS) -> Return
.br
.RS
.TP
Types
VFS = #objref
.br
Return = \&'FTP\&' | \&'NATIVE\&'
.br
.RE
.RS
.LP
This read only attribute represents the target object\&'s associated file system\&.
.RE
.LP
.B
\&'_get_supported_content_types\&'(VFS) -> Return
.br
.RS
.TP
Types
VFS = #objref
.br
Return =
.br
.RE
.RS
.LP
This read only attribute represents the target object\&'s supported content types\&.
.RE
.LP
.B
login(VFS, User, Password, Account) -> Return
.br
.RS
.TP
Types
VFS = #objref
.br
User = Password = Account = string()
.br
Return = {FileTransferSession, Directory} | {\&'EXCEPTION\&', E}
.br
FileTransferSession = Directory = #objref
.br
.RE
.RS
.LP
This operation creates a new instance of a \fIFileTransferSession\fR and a \fIDirectory\fR\&. The later represents the current working directory of the returned \fIFileTransferSession\fR\&.
.RE
|