如何编写复制文档的脚本
给定文档列表及其在 Access 数据库中的路径,我需要什么脚本才能将所有这些文档从其路径复制到本地文件夹,而无需将每个单独的路径写到脚本中,因为数据库经常更改。
given a list of documents and their path in an access database what script do i need to copy all these documents from their path to a local folder without writing out each individual path into the script as the database often changes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您根本不需要任何“脚本”。只需使用
FileCopy
语句,提供源路径和目标路径。说明书上是这样的。VB6是编译的,不是像PHP什么的脚本系统。
You don't need any "script" at all. Just use a
FileCopy
statement, providing the source and destination paths. It's right in the manual.VB6 is compiled, not a scripting system like PHP or something.