exec master..xp_cmdshell'net use z: //ip/碟符$/站點檔案/子資料夾 "登入密碼" /user:ip/使用者名稱'
declare @kh_id varchar(20)
declare @return int
declare @filepath varchar(500)
declare @files varchar(200)
declare @sql varchar(500)
set @files='z:/'
set @return =0
declare mycur cursor for
select a.kh_id from client as a
open mycur
fetch next from mycur into @kh_id
while @@fetch_status=0
begin
set @filepath=@files+cast(@kh_id as varchar(20))+'.xml'
exec xp_fileexist @filepath,@return out
if (@return =1)
begin
set @sql= 'del '+@filepath
exec master..xp_cmdshell @sql
endfetch next from mycur into @kh_id
endclose mycur
deallocate mycur
exec master..xp_cmdshell 'net use z: /delete'
設定區域網檔案共享
區域網的價值不僅在於實現了共享上網,還能通過簡單方法共享電腦中的檔案或與電腦連線的印表機,讓區域網中其他電腦也能使用這些資源。工具 兩台電腦以上的區域網 win7作業系統 下面介紹windows7區域網檔案共享如何設定的步驟。每台電腦在網路中都有乙個唯一的標識,即計算機名。1 右擊桌面網路 屬性 更...
區域網檔案同步 計畫任務
新建bat檔案 同步遠端資料庫備份檔案.bat 批處理檔案是將區域網碟符對映到本地碟符,然後同步檔案到本地。echo off net use j 192.168.1.115 e yj115 2016 user 192.168.1.115 administrator xcopy j databak f...
c 區域網檔案傳輸例項
乙個基於c 的點對點區域網檔案傳輸小案例,執行效果截圖 介面窗體 using system using system.collections.generic using system.componentmodel using system.data using system.drawing usin...