标题:貌似很弱智的问题
取消只看楼主
gxwxgxwx
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-8-6
结帖率:0
已结贴  问题点数:20 回复次数:1 
貌似很弱智的问题
在纯sql2008环境下,能在硬盘里新建文件夹吗??先谢了
搜索更多相关主题的帖子: 新建文件夹 
2013-08-06 19:10
gxwxgxwx
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2013-8-6
得分:0 

终于被我找到了,谢谢楼上兄弟的鼓励!
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'xp_cmdshell', 1
go
RECONFIGURE
GO

EXEC sp_configure 'show advanced options', 0
GO
RECONFIGURE
GO

EXEC master..xp_cmdshell 'if not exist D:\abc (md D:\abc)'--新建文件夹

EXEC master..xp_cmdshell 'if exist D:\abc (del /q D:\abc)'--删除文件

EXEC master..xp_cmdshell 'if exist D:\abc (rd /q D:\abc)'--删除文件夹

Go
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO

EXEC sp_configure 'xp_cmdshell', 0
go
RECONFIGURE
GO

EXEC sp_configure 'show advanced options', 0
GO
RECONFIGURE
GO
2013-08-07 08:00



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-418716-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.486102 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved