blob: 581dfa3bc671271e7656d4afa9767696c22b34e4 (
plain)
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
|
<html>
<head>
<title>ftp Library Package 2.1 for Tcl/Tk help file</title>
</head>
<body bgcolor="#ffffff" text="#000000">
<body>
<p>
<dl>
<dd>
<p><font face="Arial,Helvetica" color="#526e9c" size="+2"><b>ftp Library Package 2.1 for Tcl/Tk Manual Pages</b></font></p>
</dd>
<dd><font face="Arial,Helvetica" size="+1"><b>COMMAND</b></font></dd>
<dd><dl>
<dd><b>ftp::Type</b><em> handle ?ascii|binary?</em></dd>
<dd> </dd>
<dd>
The <b>ftp::Type</b> command sets the ftp file transfer type either
to <em>ascii</em>, <em>binary</em>, or to <em>tenex</em>. In every
case, also if the type name is unspecified, it returns the current type.
<p>Only <b>ascii</b> and <b>binary</b> types are currently supported.
There is some early (alhpa) support for Tenex mode. The ascii
type is normally used to convert text files to a format suitable
for text editors on the platform depended destination machine.
The binary type allows undisturbed transfers of non-text files,
such as compressed files, images and executables. </p>
</dd>
</dl></dd>
<dd><font face="Arial,Helvetica" size="+1"><b>EXAMPLE</b></font></dd>
<dd><dl>
<dd>
<pre># get file transfer type
set current_type [ftp::Type $conn]
# set file transfer type
ftp::Type $conn ascii
</pre>
</dd>
</dl></dd>
</dl>
</p>
<p>
[<a href="index.html">Contents</a>]
[<b>Previous:</b> <a href="fhelp4.html">ftp::Pwd</a>]
[<b>Next:</b> <a href="fhelp6.html">ftp::List</a>]
</p>
<p align="left"><hr noshade size="1"><font face="Arial,Helvetica" size="-1">© 1999 <a href="mailto:Steffen.Traeger@t-online.de">Steffen Traeger</a></font></p>
</body>
</html>
|