如何在经典 ASP 中创建复制文件的目标目录结构?
我想将文件复制到目标目录。 使用文件系统对象的 copyFile 命令很简单。 但我需要一些增强功能,例如,
如果目标目录不存在,那么它将创建目标目录,然后复制文件。
你能帮我实现它吗?
让我知道是否还有其他方法可以做到同样的事情。
谢谢。
解决方案:
'Create folder if it doesn't exist
If not oFSO.FolderExists(sDestinationFolder) then
oFSO.CreateFolder(sDestinationFolder)
End If
I want to copy a file to target directory.
It is simple with copyFile command of File system object.
But I need some enhancement like,
If target directory is not exist then it'll create target directory and then copy a file.
Can you help me achieve it?
Let me know if there are other ways to do same.
Thanks.
Solution:
'Create folder if it doesn't exist
If not oFSO.FolderExists(sDestinationFolder) then
oFSO.CreateFolder(sDestinationFolder)
End If
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我这项工作的基本职能:-
This is my basic function for this job:-
像这样的事情:
W3Schools 有很多关于如何使用 FileSystemObject 的示例 [此处][1]。
编辑:
Something like this:
W3Schools has lots of examples on how to use the FileSystemObject [here][1].
EDIT: