report yup message-id sb.
data: fname type rlgrap-filename,
ftype type rlgrap-filetype,
fsize type i.
data: fname_p type string,
fname_n type string.
data: sfname_p type string .
data: sfname like rcgiedial-iefile.
sfname_p = 'c:/'.
data: r(1) type c.
data: data_tab like rcgrepfile occurs 10 with header line.
data: lines type i.
call function 'upload'
exporting
* codepage = 'ibm'
filename = 'c:/'
filetype = 'bin'
* filemask_mask = '*.xls'
* file**ask_text = 'xls'
filetype_no_change = 'x'
* silent = 'x'
* item = ''
importing
filesize = fsize
act_filename = fname
act_filetype = ftype
tables
data_tab = data_tab
exceptions
conversion_error = 1
invalid_table_width = 2
invalid_type = 3.
fname_n = fname.
do.split fname_n at '/' into fname_p fname_n.
search fname_n for '/'.
if sy-subrc = 4.
exit.
endif.
enddo.
fname_p = fname.
shift fname_p right deleting trailing fname_n.
shift fname_p left deleting leading space.
*write:/,'fname_p=',fname_p,'|',
* /,'fname_n=',fname_n,'|'.
concatenate sfname_p fname_n into sfname.
*write:/,'sfname=',sfname,'|'.
describe table data_tab lines lines.
call function 'c13z_rawdata_write'
exporting
i_file = sfname
i_file_size = fsize
i_lines = lines
tables
i_rcgrepfile_tab = data_tab
exceptions
no_permission = 1
open_failed = 2
others = 3.
if sy-subrc ne 0.
message s000 with 'upload succ'.
endif.
write: 'sy-subrc:', sy-subrc,
/ '上載的本地檔名:', (60) fname,
/ '上載的遠端檔名:',(60) sfname,
/ '檔案型別:', ftype,
/ '檔案大小:', fsize.
skip.
通過 PHP,可以把檔案上傳到伺服器。
允許使用者從表單上傳檔案是非常有用的。請看下面這個供上傳檔案的 html 表單 請留意如下有關此表單的資訊 標籤的 enctype 屬性規定了在提交表單時要使用哪種內容型別。在表單需要二進位制資料時,比如檔案內容,請使用 multipart form data 標籤的 type file 屬性規定了...
本地檔案上傳到遠端伺服器
win7下 用putty好像不太行。用securecrt非常方便。步驟如下 2 輸入rz,點enter 3 會彈出對話方塊,選擇要上傳的檔案 4 上傳,會顯示百分比 速率和時間等資訊。前段時間裝了ubuntu,不再使用win7了.所以想起來要更新下這篇文章.ubuntu下,我喜歡用的工具是termi...
將本地檔案上傳到Linux伺服器
scp p 埠 c user ip home root 注意 p 大寫 i 公鑰 2 上傳本地檔案到伺服器 scp path filename username servername path 例如scp var www test.php root 192.168.0.101 var www 把本機...