SSIS删除以日期命名的文件夹
我的进程会自动在目录(存档)中创建一些以日期命名的新文件夹,即(09-01-2011) 如何检查目录中文件夹的日期并删除早于特定日期的文件夹?
谢谢
My process ceates automatically some new folders named with a date i.e (09-01-2011) in a directory (Archive)
How can I check the date of the folder in the directory and delete those older than a certain date?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从此处使用 for_each_folder_enumeration 技术:
http://microsoft-ssis.blogspot.com/2011/01 /foreach-folder-enumerator.html
使用脚本组件分析文件夹名称
使用 Microsoft 建议检查文件夹是否为空:http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/a3240e00-ac9d-4082-b1e4-72bd7f695524/
使用文件系统移动文件夹任务(复制目录)
Use for_each_folder_enumeration technology from here:
http://microsoft-ssis.blogspot.com/2011/01/foreach-folder-enumerator.html
Analyze folder name using Script component
Check if folder is empty using Microsoft suggestion: http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/a3240e00-ac9d-4082-b1e4-72bd7f695524/
Move folder using File System Task (Copy directory)