0

我正在尝试删除我的 XML 文件,但它不起作用。我没有收到错误,所以我不知道问题是什么。这是我的代码。

    Dim filePath As String = "\\server02\file$\rss\alert-special-reports2.xml" 
      If Not New System.IO.FileInfo(filePath).Exists Then 
        System.IO.File.Delete(filePath) 
      End If
4

1 回答 1

1

用于此的 C# 代码将是这样的(对于 VB 类似):

  string filePath = "\\server02\file$\rss\alert-special-reports2.xml";
  File.Delete(filePath);

这里要注意的是,这里不需要任何 IF EXISTS东西。如果文件存在,它会自动删除文件,如果不存在,它不会抛出任何异常

于 2012-11-20T15:40:42.593 回答