在我的vb.net winform应用程序中,我正在移动文件(例如:sample.xls从一个文件夹到另一个文件夹.如果文件已经存在同名,则新文件名应该递增(例如:sample(1).xls ).我怎么能实现这一点? 嗨,这
Dim counter As Integer = 0 Dim newFileName As String = orginialFileName While File.Exists(newFileName) counter = counter + 1 newFileName = String.Format("{0}({1}", orginialFileName, counter.ToString()) End While
您将需要System.IO的import语句