Поделиться через


VCProject.RemoveFile - метод

Removes a file from the current project or folder.

Пространство имен:  Microsoft.VisualStudio.VCProjectEngine
Сборка:  Microsoft.VisualStudio.VCProjectEngine (в Microsoft.VisualStudio.VCProjectEngine.dll)

Синтаксис

'Декларация
Sub RemoveFile ( _
    File As Object _
)
'Применение
Dim instance As VCProject
Dim File As Object

instance.RemoveFile(File)
void RemoveFile(
    Object File
)
void RemoveFile(
    [InAttribute] Object^ File
)
function RemoveFile(
    File : Object
)

Параметры

Заметки

RemoveFile can be called on a VCProject or VCFilter object. Either will remove the file from both its current folder, if one exists, and the project. RemoveFile does not delete the file from disk.

Примеры

See How to: Compile Example Code for Project Model Extensibility for information about how to compile and run this example.

The following example uses RemoveFile on a VCProject object in the integrated development environment (IDE):

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

Public Module Module1
    Sub Test()
        Dim prj As VCProject
        Dim MyCol As IVCCollection
        Dim file As VCFile
        prj = DTE.Solution.Projects.Item(1).Object
        MyCol = prj.Files
        file = MyCol.Item("ReadMe.txt")
        prj.RemoveFile(file)
    End Sub
End Module

Разрешения

  • Полное доверие для непосредственно вызывающего метода. Этот член не может быть использован частично доверенным кодом. Дополнительные сведения см. в разделе Using Libraries from Partially Trusted Code.

См. также

Ссылки

VCProject Интерфейс

VCProject - члены

Microsoft.VisualStudio.VCProjectEngine - пространство имен