SSIS删除以日期命名的文件夹

发布于 2024-12-02 13:06:04 字数 89 浏览 0 评论 0原文

我的进程会自动在目录(存档)中创建一些以日期命名的新文件夹,即(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

命硬 2024-12-09 13:06:04
  1. 从此处使用 for_each_folder_enumeration 技术:
    http://microsoft-ssis.blogspot.com/2011/01 /foreach-folder-enumerator.html

  2. 使用脚本组件分析文件夹名称

  3. 使用 Microsoft 建议检查文件夹是否为空:http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/a3240e00-ac9d-4082-b1e4-72bd7f695524/

  4. 使用文件系统移动文件夹任务(复制目录)

  1. Use for_each_folder_enumeration technology from here:
    http://microsoft-ssis.blogspot.com/2011/01/foreach-folder-enumerator.html

  2. Analyze folder name using Script component

  3. Check if folder is empty using Microsoft suggestion: http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/a3240e00-ac9d-4082-b1e4-72bd7f695524/

  4. Move folder using File System Task (Copy directory)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文