IsolatedStorageFile.CopyFile 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
새 파일에 기존 파일을 복사합니다.
오버로드
CopyFile(String, String) |
새 파일에 기존 파일을 복사합니다. |
CopyFile(String, String, Boolean) |
새 파일에 기존 파일을 복사하고 선택적으로 기존 파일을 덮어씁니다. |
CopyFile(String, String)
- Source:
- IsolatedStorageFile.cs
- Source:
- IsolatedStorageFile.cs
- Source:
- IsolatedStorageFile.cs
새 파일에 기존 파일을 복사합니다.
public:
void CopyFile(System::String ^ sourceFileName, System::String ^ destinationFileName);
public void CopyFile (string sourceFileName, string destinationFileName);
[System.Runtime.InteropServices.ComVisible(false)]
public void CopyFile (string sourceFileName, string destinationFileName);
member this.CopyFile : string * string -> unit
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.CopyFile : string * string -> unit
Public Sub CopyFile (sourceFileName As String, destinationFileName As String)
매개 변수
- sourceFileName
- String
복사할 파일의 이름입니다.
- destinationFileName
- String
대상 파일의 이름입니다. 대상 파일 이름은 디렉터리나 기존 파일일 수 없습니다.
- 특성
예외
sourceFileName
또는 destinationFileName
가 빈 문자열이거나 공백만 포함하거나 GetInvalidPathChars() 메서드로 정의된 하나 이상의 잘못된 문자를 포함합니다.
sourceFileName
또는 destinationFileName
가 null
인 경우
격리된 저장소가 닫힌 경우
격리된 저장소가 삭제된 경우
sourceFileName
을 찾을 수 없습니다.
sourceFileName
을 찾을 수 없습니다.
격리된 저장소가 제거된 경우
또는
격리된 스토리지가 비활성화되었습니다.
또는
destinationFileName
이 있습니다.
또는
I/O 오류가 발생했습니다.
설명
sourceFileName
및 는 destinationFileName
다른 파일 이름을 지정해야 합니다. 메서드 오버로드를 IsolatedStorageFile.CopyFile(String, String, Boolean) 사용하여 기존 파일을 덮어씁 수 있습니다.
추가 정보
적용 대상
CopyFile(String, String, Boolean)
- Source:
- IsolatedStorageFile.cs
- Source:
- IsolatedStorageFile.cs
- Source:
- IsolatedStorageFile.cs
새 파일에 기존 파일을 복사하고 선택적으로 기존 파일을 덮어씁니다.
public:
void CopyFile(System::String ^ sourceFileName, System::String ^ destinationFileName, bool overwrite);
public void CopyFile (string sourceFileName, string destinationFileName, bool overwrite);
[System.Runtime.InteropServices.ComVisible(false)]
public void CopyFile (string sourceFileName, string destinationFileName, bool overwrite);
member this.CopyFile : string * string * bool -> unit
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.CopyFile : string * string * bool -> unit
Public Sub CopyFile (sourceFileName As String, destinationFileName As String, overwrite As Boolean)
매개 변수
- sourceFileName
- String
복사할 파일의 이름입니다.
- destinationFileName
- String
대상 파일의 이름입니다. 대상 파일 이름은 디렉터리가 될 수 없습니다.
- overwrite
- Boolean
대상 파일을 덮어쓸 수 있으면 true
이고, 그렇지 않으면 false
입니다.
- 특성
예외
sourceFileName
또는 destinationFileName
가 빈 문자열이거나 공백만 포함하거나 GetInvalidPathChars() 메서드로 정의된 하나 이상의 잘못된 문자를 포함합니다.
sourceFileName
또는 destinationFileName
가 null
인 경우
격리된 저장소가 닫힌 경우
격리된 저장소가 삭제된 경우
sourceFileName
을 찾을 수 없습니다.
sourceFileName
을 찾을 수 없습니다.
설명
sourceFileName
및 destinationFileName
는 가 인 경우 overwrite
true
동일한 파일 이름을 가질 수 있습니다.
추가 정보
적용 대상
.NET