/**
* description: 從本地上傳檔案到共享目錄
* @param
* @param localfilename 本地檔名
*/public
static
void
smbput
(string localfilename)
}catch
(exception e)
finally
catch
(ioexception e)
}}
/**
* description: 從共享目錄拷貝檔案到本地
* @param remoteurl 共享目錄上的檔案路徑
* @param localdir 本地目錄
*/public
static
void
smbget
(string remoteurl,string localdir)
}catch
(exception e)
finally
catch
(ioexception e)
}}
/**
* 刪除檔案
* @param remoteurl 共享檔案目錄
* @param filename 要刪除的檔名
*/public
static
void
deletefile
(string remoteurl, string filename, string username, string pwd)
}catch
(malformedurlexception
| smbexception e)
}
docker在windows下上傳檔案到容器
我的系統是windows10,docker是用dockertoolbox工具安裝的,安裝完之後會預設掛載windows的c users目錄,在docker裡面對應路徑是 c users,docker預設的使用者路徑是 c users windows的登入使用者名稱,對應windows的登入使用者目錄...
上傳windows檔案到虛擬機器中
yum install lrzsz 安裝完畢即可使用。rz,sz是便是linux unix同windows進行zmodem檔案傳輸的命令列工具,所以要在xshell連線屬性中的設定上傳協議為zmodem和接受的檔案路徑等,如下圖所示 windows端需要支援zmodem的telnet ssh客戶端 ...
windows上傳版本到github
1 先在個人github上建立乙個 創庫 new repository eg 建立乙個jdbcconnection 2 進入需要上傳的 目錄,進行初始化上傳包括 git init git add git commit m 3 進行上傳 git push u origin master 4 進入git...