move移动方法移至指定的文件或文件夹从一个位置到另一个位置。
语法
FileObject.Move(destination)
FolderObject.Move(destination)
Parameter | Description |
---|---|
destination | Required. Where to move the file or folder. Wildcard characters are not allowed |
对文件操作简单例子.
<% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") Set f=fs.GetFile("c:test.txt") f.Move("c:testtest.txt") set f=nothing set fs=nothing %>
对文件夹操作例子.
<% dim fs,fo set fs=Server.CreateObject("Scripting.FileSystemObject") set fo=fs.GetFolder("c:test") fo.Move("c:asptest") set fo=nothing set fs=nothing %>
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索文件
, 实例
教程
asp.net实例教程、asp.net mvc4实例教程、asp.net mvc实例教程、asp.net 就业实例教程、asp实例教程,以便于您获取更多的相关知识。
时间: 2024-11-16 13:41:33