C 上傳檔案到指定伺服器

2021-08-15 05:28:13 字數 1221 閱讀 1800

///

/// webclient上傳檔案至伺服器,預設不自動改名  

///

/// 檔名,全路徑格式

/// 伺服器資料夾路徑

public void uploadfile(string filenamepath, string uristring)

///

/// webclient上傳檔案至伺服器  

///

/// 檔名,全路徑格式

/// 伺服器資料夾路徑

/// 是否自動按照時間重新命名

public void uploadfile(string filenamepath, string uristring, bool isautorename)

string filenameext = filename.substring(filename.lastindexof(".") + 1);

if (uristring.endswith("/") == false) uristring = uristring + "/";

if (!directory.exists(uristring))//如果不存在就建立file資料夾

uristring = uristring + newfilename;

/**/

/// 建立webclient例項  

system.net.webclient mywebclient = new webclient();

mywebclient.credentials = new networkcredential("10.1.31.218", "0.");

// mywebclient.credentials = credentialcache.defaultcredentials;

// 要上傳的檔案  

filestream fs = new filestream(filenamepath, filemode.open, fileaccess.read);

binaryreader r = new binaryreader(fs);

byte postarray = r.readbytes((int)fs.length);

stream poststream = mywebclient.openwrite(uristring, "put");

tryelse

}catch (exception err)

finally

}

上傳指定檔案到ftp伺服器上

echo offset ftpuser username setftppass password setftpip 192.168 0.2 setupfolder c temp setftpfile temp tempacc txt ftpfile echo ftpuser ftpfile echo...

AngularJs 上傳檔案到伺服器

define angular angular route angular resource angular animate angular growl angular ngupload controllers index directives index filters index services...

PSFTP上傳檔案到伺服器

一 開啟psftp命令工具 二 可以看到首行提示 use open host.name to connect三 我的伺服器使用者民是xing,伺服器位址是192.168.12.128 我用的本地虛擬機器 open xing 192.168.12.128然後會提示輸入伺服器密碼,輸入即可成功連線伺服器...