共用方式為


VCProject.AddFile 方法

將檔案加入至目前的專案或資料夾。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

'宣告
Function AddFile ( _
    bstrPath As String _
) As Object
Object AddFile(
    string bstrPath
)
Object^ AddFile(
    String^ bstrPath
)
abstract AddFile : 
        bstrPath:string -> Object 
function AddFile(
    bstrPath : String
) : Object

參數

  • bstrPath
    型別:System.String
    必要項。要加入至專案或資料夾的檔案名稱。

傳回值

型別:System.Object
剛才加入之檔案的 VCFile 物件。

備註

AddFile行為在VCProject物件會視檔案的副檔名而定。 如果檔案已經以指定的副檔名為Filter屬性,該檔案會加入至適當的資料夾。 否則檔案放在結尾處方案總管] 中清單。

AddFile在VCFilter物件會導致檔案放在指定的資料夾,無論檔案的副檔名。

將檔案加入這種方式並不會建立在磁碟上的檔案。 呼叫端負責處理,如有必要。

AddFile在VCFile物件指定要與該檔的檔案名稱。

範例

請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。

下列範例會使用AddFile的VCProject在整合式的開發環境 (IDE) 中的物件:

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim file As VCFile
        prj = DTE.Solution.Projects.Item(1).Object
        file = prj.AddFile("file.cpp")
        MsgBox(file.Name.ToString())
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCProject 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間