Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
那么,我怎样才能告诉系统为我打开文件呢?我试过了
Shell(ExcelFilePath)
但是尽管文件路径来自 OpenFileDialog.FileOk,但引发了异常
所以,我正在尝试使用 Excel.Application,是否可以用它打开文件?
这将使用 Excel 打开文件:
Process.Start("EXCEL.EXE", """C:\Folder\file.xls""")
作为第二个字符串,该过程的参数。请参阅MSDN 文档。
尝试这个
System.Diagnostics.Process.Start("FilePath")
它将在与其关联的应用程序中打开文件。