20002011 Ericsson AB. All Rights Reserved. The contents of this file are subject to the Erlang Public License, Version 1.1, (the "License"); you may not use this file except in compliance with the License. You should have received a copy of the Erlang Public License along with this software. If not, it can be retrieved online at http://www.erlang.org/. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. CosFileTransfer_FileTransferSession 2000-11-09 PA1
CosFileTransfer_FileTransferSession This module implements the OMG CosFileTransfer::FileTransferSession interface.

To get access to the record definitions for the structures use:

-include_lib("cosFileTransfer/include/*.hrl").

'_get_protocols_supported'(FTS) -> Return Return the protocols supported by the target object FTS = #objref Return = [#'CosFileTransfer_ProtocolSupport'{protocol_name=Type, addresses=[Address]}] Type = Address = string()

This read only attribute returns the protocols supported by the target object.

set_directory(FTS, Directory) -> Return Change the current working directory of the target object's associated file system FTS = Directory = #objref Return = ok | {'EXCEPTION, E}

Invoking this operation will change the current working directory of the target object's associated file system. If fail to do so the appropriate exception is raised.

create_file(FTS, FileNameList) -> Return Create a FileObject representing a file which may or may not exist FTS = #objref FileNameList = [string()] Return = File | {'EXCEPTION, E} File = #objref

This operation creates a File Object representing a file which may or may not exist. For this operation to be independent of the working directory the supplied FileNameList must represent the absolute name.

create_directory(FTS, FileNameList) -> Return Create a new directory in the target objects associated file systems domain FTS = #objref FileNameList = [string()] Return = Directory | {'EXCEPTION, E} Directory = #objref

This operation creates a new directory in the target objects associated file systems domain. If fail to do so an exception is raised but, if successful, a Directory object representing the new directory is returned.

get_file(FTS, FileNameList) -> Return Create a FileWrapperwhich represents a file or directory FTS = #objref FileNameList = [string()] Return = FileWrapper | {'EXCEPTION, E} FileWrapper = #'CosFileTransfer_FileWrapper'{the_file = File file_type = Type} File = #objref Type = nfile | ndirectory

This operation, creates a FileWrapper which represents a file or directory, and should be independent of the working Directory, i.e., a full path name must be supplied. Furthermore, the file or directory represented by the FileNameList must exist.

delete(FTS, File) -> Return Delete the file or directory, represented by the Fileobject, from the target objects associated file system FTS = File = #objref Return = ok | {'EXCEPTION', E}

This operation removes the file or directory, represented by the File object, from the target objects associated file system. If it is a non-empty directory or non-existing file or directory an exception is raised.

transfer(FTS, SourceFile, DestinationFile) -> Return Copy the file represented by the SourceFilefrom the target object's file system to a file in the destination FileTransferSession'sfile system FTS = SourceFile = DestinationFile = #objref Return = ok | {'EXCEPTION', E}

If the target object's and the DestinationFile's associated FileTransferSession's support the same protocol(s) this operation will copy the file represented by the SourceFile from the target object's file system to a file in the destination FileTransferSession's file system. The file is represented by the DestinationFile object and may not exist. This operation must be invoked on the FileTransferSession associated with the SourceFile object.

append(FTS, SourceFile, DestinationFile) -> Return Append the file represented by the SourceFilefrom the target object's file system to a file in the destination FileTransferSession'sfile system FTS = SourceFile = DestinationFile = #objref Return = ok | {'EXCEPTION', E}

This operation behaves almost like the transfer/3 operation. The difference is that the DestinationFile must exist since the SourceFile will be appended to the DestinationFile.

Currently, it is not possible to use this operation when the target object represents FTP.

insert(FTS, SourceFile, DestinationFile, Offset) -> Return Insert the SourceFileinto the DestinationFile Offsetbytes from the start of the file FTS = SourceFile = DestinationFile = #objref Offset = long() Return = ok | {'EXCEPTION', E}

This operation behaves almost like the append/3 operation. The difference is that the SourceFile will be inserted into the DestinationFile Offset bytes from the start of the file.

Currently, it is not possible to use this operation when the target object represents FTP.

logout(FTS) -> ok Terminate the target object and close the connection to the file system it represents FTS = #objref

This operation terminates the target object and closes the connection to the file system it represents.