Visual Basic中MoveTo函数的超时

时间:2016-11-21 09:26:36

标签: .net vba

有时System.IO.Fileinfo(file).MoveTo()执行时间太长。有没有办法在1秒后停止执行?

我使用Visual Basic 2013.

Dim f as New System.IO.Fileinfo("C:\test.txt") 
Try 
    ' this might take too long
    f.MoveTo(System.IO.Path.Combine(f.DirectoryName, f.Name & ".BK")) 
catch 
    Messagebox.show(ex.tostring) 
end try

0 个答案:

没有答案