我正在尝试将文件复制到另一个目录,但出现此错误
System.IO.DirectoryNotFoundException:找不到路径“C:\Documents and Settings\(我的用户名)\Desktop\Source_Folder\File_1.xlsx”的一部分。
但是 File_1.xlsx 存在于我的桌面上存在的文件夹 Source_Folder 中。那么为什么我会收到这个错误?
这是我的代码
Dim path_orig As String = "C:\Documents and Settings\(my username)\Desktop\Source_Folder\"
Dim oldFile As String = System.IO.Path.Combine(path_orig, filename)
Dim path_new As String = Server.MapPath("~") & "\Destination_Folder\"
Dim newFile As String = System.IO.Path.Combine(path_new, filename)
File.Copy(oldFile, newFile, True)
*filename 是一个变量,在这种情况下是“File_1.xlsx”