TempFileCollection.AddFile(String, Boolean) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션이 삭제되거나 Delete() 메서드가 호출될 때 파일을 보관할 것인지 여부를 나타내는 특정 값을 사용하여 지정된 파일을 컬렉션에 추가합니다.
public:
void AddFile(System::String ^ fileName, bool keepFile);
public void AddFile (string fileName, bool keepFile);
member this.AddFile : string * bool -> unit
Public Sub AddFile (fileName As String, keepFile As Boolean)
매개 변수
- fileName
- String
컬렉션에 추가할 파일 이름입니다.
- keepFile
- Boolean
파일을 사용한 후에 유지하려면 true
로 설정하고, 삭제하려면 false
로 설정합니다.
예외
예제
다음 예제에서는 메서드를 AddFile(String, Boolean) 사용하여 컬렉션에 보관할 파일을 추가하는 방법을 보여줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 TempFileCollection 클래스입니다.
// Name a file in the test directory.
string file2Name = "testDir\\test.txt";
// Add the file to the temp directory and indicate it is to be kept.
tfc.AddFile(file2Name, true);
' Name a file in the test directory.
Dim file2Name As String = "testDir\test.txt"
' Add the file to the temp directory and indicate it is to be kept.
tfc.AddFile(file2Name, True)
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET