다음을 통해 공유


File.AppendAllBytes 메서드

정의

오버로드

AppendAllBytes(String, Byte[])

지정된 바이트 배열을 지정된 경로의 파일 끝에 추가합니다.

파일이 없으면 이 메서드는 새 파일을 만듭니다.

AppendAllBytes(String, ReadOnlySpan<Byte>)

지정된 바이트 배열을 지정된 경로의 파일 끝에 추가합니다.

파일이 없으면 이 메서드는 새 파일을 만듭니다.

AppendAllBytes(String, Byte[])

Source:
File.cs

지정된 바이트 배열을 지정된 경로의 파일 끝에 추가합니다.

파일이 없으면 이 메서드는 새 파일을 만듭니다.

public:
 static void AppendAllBytes(System::String ^ path, cli::array <System::Byte> ^ bytes);
public static void AppendAllBytes (string path, byte[] bytes);
static member AppendAllBytes : string * byte[] -> unit
Public Shared Sub AppendAllBytes (path As String, bytes As Byte())

매개 변수

path
String

추가할 파일입니다.

bytes
Byte[]

파일에 추가할 바이트입니다.

예외

path 또는 bytesnull.

path 비어 있습니다.

지정된 경로, 파일 이름 또는 둘 다 시스템 정의 최대 길이를 초과합니다.

지정한 경로가 잘못되었습니다(예: 매핑되지 않은 드라이브에 있는 경우).

파일을 여는 동안 I/O 오류가 발생했습니다.

path 읽기 전용인 파일을 지정했습니다.

-또는-

path 숨겨진 파일을 지정했습니다.

-또는-

path 디렉터리를 지정했습니다.

-또는-

호출자에게 필요한 권한이 없습니다.

-또는-

이 작업은 현재 플랫폼에서 지원되지 않습니다.

path 잘못된 형식입니다.

적용 대상

AppendAllBytes(String, ReadOnlySpan<Byte>)

지정된 바이트 배열을 지정된 경로의 파일 끝에 추가합니다.

파일이 없으면 이 메서드는 새 파일을 만듭니다.

public:
 static void AppendAllBytes(System::String ^ path, ReadOnlySpan<System::Byte> bytes);
public static void AppendAllBytes (string path, ReadOnlySpan<byte> bytes);
static member AppendAllBytes : string * ReadOnlySpan<byte> -> unit
Public Shared Sub AppendAllBytes (path As String, bytes As ReadOnlySpan(Of Byte))

매개 변수

path
String

추가할 파일입니다.

bytes
ReadOnlySpan<Byte>

파일에 추가할 바이트입니다.

예외

path 비어 있습니다.

지정된 경로, 파일 이름 또는 둘 다 시스템 정의 최대 길이를 초과합니다.

지정한 경로가 잘못되었습니다(예: 매핑되지 않은 드라이브에 있는 경우).

파일을 여는 동안 I/O 오류가 발생했습니다.

path 읽기 전용인 파일을 지정했습니다.

-또는-

path 숨겨진 파일을 지정했습니다.

-또는-

path 디렉터리를 지정했습니다.

호출자에게 필요한 권한이 없습니다.

-또는-

이 작업은 현재 플랫폼에서 지원되지 않습니다.

path 잘못된 형식입니다.

적용 대상