删除文件存储过程 ALTER proc [dbo].[delFile_P] ( @path nvarchar(200)) as declare @result int exec master.dbo.xp_fileexist @path,@result out --路径可以有空格 if @result = 1 --1存在该文件,0不存在 begin --如果路径有空格,在执行cmdshell前必须替换空格字符,用双引号括住 set @path = 'del ' + replace(@path,' ','" "') exec master.dbo.xp_cmdshell @path end 调用存储过程 exec MIS.dbo.delFile_P 'F:/Internet Explorer 6 绿色版/install.log'
请发表评论