This function removes a file from the active project.
Specify the full path of the file to be removed from the active project. When specifying multiple files, specify in the format ["file1", "file2"]. |
If a file was removed from the active project successfully: True
If there was an error when a file was removed from the active project: False
>>>project.File.Remove("C:/project/sample/src/test.c") True >>>project.File.Remove(["C:/project/sample/src/test1.c", "C:/project/sample/src/test2.c"]) True |