594件ヒット
[1-100件を表示]
(0.031秒)
別のキーワード
クラス
-
Net
:: FTP (594)
キーワード
- acct (12)
- binary= (12)
- chdir (12)
- connect (12)
-
debug
_ mode= (12) - delete (12)
- dir (24)
- get (24)
- getbinaryfile (24)
- gettextfile (24)
- help (12)
- list (24)
- login (12)
- ls (24)
- mdtm (12)
- mkdir (12)
- mlsd (20)
- mlst (10)
- mtime (12)
- nlst (12)
-
open
_ timeout= (12) - put (24)
- putbinaryfile (24)
- puttextfile (24)
-
read
_ timeout= (12) - rename (12)
- resume= (12)
- retrbinary (24)
- retrlines (12)
- rmdir (12)
- sendcmd (12)
-
set
_ socket (12) - site (12)
- size (12)
- storbinary (24)
- storlines (24)
- voidcmd (12)
検索結果
先頭5件
- Net
:: FTP # storbinary(cmd , file , blocksize , rest _ offset = nil) -> nil - Net
:: FTP # storbinary(cmd , file , blocksize , rest _ offset = nil) {|data| . . . } -> nil - Net
:: FTP # get(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) -> nil - Net
:: FTP # get(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) { |data| . . . . } -> nil - Net
:: FTP # getbinaryfile(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) -> nil
-
Net
:: FTP # storbinary(cmd , file , blocksize , rest _ offset = nil) -> nil (27.0) -
サーバーに cmd で指定されたコマンドを送り、バイナリデータを 送ります。
...を blocksize ごとに
ブロックにも渡します。
@param cmd コマンドを文字列で与えます。
@param file 送るデータを与えます。
@param blocksize 読み込み単位をバイト単位で与えます。
@param rest_offset REST コマンドに与えるオフセットを与... -
Net
:: FTP # storbinary(cmd , file , blocksize , rest _ offset = nil) {|data| . . . } -> nil (27.0) -
サーバーに cmd で指定されたコマンドを送り、バイナリデータを 送ります。
...を blocksize ごとに
ブロックにも渡します。
@param cmd コマンドを文字列で与えます。
@param file 送るデータを与えます。
@param blocksize 読み込み単位をバイト単位で与えます。
@param rest_offset REST コマンドに与えるオフセットを与... -
Net
:: FTP # get(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) -> nil (21.0) -
サーバ上のファイルを取得します。
...の
ときには blocksize は無視されます。
@param remotefile 取得対象のリモートのファイル名を与えます。
@param localfile 取得したデータを格納するローカルのファイル名を与えます。
@param blocksize データ転送の単位をバイト単位で... -
Net
:: FTP # get(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) { |data| . . . . } -> nil (21.0) -
サーバ上のファイルを取得します。
...の
ときには blocksize は無視されます。
@param remotefile 取得対象のリモートのファイル名を与えます。
@param localfile 取得したデータを格納するローカルのファイル名を与えます。
@param blocksize データ転送の単位をバイト単位で... -
Net
:: FTP # getbinaryfile(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) -> nil (21.0) -
サーバ上のファイルをバイナリモードで取得します。
...、そのデータを
ブロックに渡します。
@param remotefile 取得対象のリモートのファイル名を与えます。
@param localfile 取得したデータを格納するローカルのファイル名を与えます。
@param blocksize データ転送の単位をバイト単位で... -
Net
:: FTP # getbinaryfile(remotefile , localfile = File . basename(remotefile) , blocksize = DEFAULT _ BLOCKSIZE) {|data| . . . } -> nil (21.0) -
サーバ上のファイルをバイナリモードで取得します。
...、そのデータを
ブロックに渡します。
@param remotefile 取得対象のリモートのファイル名を与えます。
@param localfile 取得したデータを格納するローカルのファイル名を与えます。
@param blocksize データ転送の単位をバイト単位で... -
Net
:: FTP # login(user = "anonymous" , passwd = nil , acct = nil) -> () (21.0) -
ホストへのログイン処理を行ないます。
...ACCT コマンドを
acct で指定したパラメータで送ります。
@param user ログインに使うユーザ名を指定します。
@param passwd ログインに使うパスワードを指定します。
@param acct ログイン後に送る ACCT コマンドのパラメータを指定し... -
Net
:: FTP # put(localfile , remotefile = File . basename(localfile) , blocksize = DEFAULT _ BLOCKSIZE) -> nil (21.0) -
サーバへファイルを転送します。
...ードの
ときには blocksize は無視されます。
@param localfile 転送するローカルのファイル名を与えます。
@param remotefile 転送データを保存するリモートのファイル名を与えます。
@param blocksize データ転送の単位をバイト単位で与... -
Net
:: FTP # put(localfile , remotefile = File . basename(localfile) , blocksize = DEFAULT _ BLOCKSIZE) { |data| . . . . } -> nil (21.0) -
サーバへファイルを転送します。
...ードの
ときには blocksize は無視されます。
@param localfile 転送するローカルのファイル名を与えます。
@param remotefile 転送データを保存するリモートのファイル名を与えます。
@param blocksize データ転送の単位をバイト単位で与...