C#

    [C#] 디렉터리 및 파일제어

    [C#] 디렉터리 및 파일제어

    디렉터리 및 파일제어 디렉터리 및 파일 제어

    [C#] 문자스트림, txt파일 생성

    [C#] 문자스트림, txt파일 생성

    문자스트림, txt파일 생성 문자 스트림 예제

    [C#] 파일스트림(FileStream), 파일복사

    [C#] 파일스트림(FileStream), 파일복사

    파일복사 소스 바이트 스트림 예제 원본 파일: 복사된 파일:

    [C# ] 파일업로드(FileUpload) 소스

    [C# ] 파일업로드(FileUpload) 소스

    파일업로드 소스

    [C#] 원하는 길이로 좌측/우측 정렬시킨후 나머지 공간을 다른 문자로 채우기

    1. 원하는 길이로 좌측/우측 정렬시킨후 나머지 공간을 다른 문자로 채우기 (기본은 공백) String.PadLeft(길이, [문자]); String.PadRight(길이, [문자]); 예) string str1 = "asdf"; string str2 = str1.PadLeft(10);//str2 = " asdf" string str3 = str1.PadRight(6, '-');//str3 = "asdf--" str2 웹에서 보면 빈칸이 안나오기에 그냥 asdf로 나오지만 Length 해보면 10값 나옴

    폴더 복사...

    밑의 함수의 인자를 보시는것처러 처음에는 복사할 폴더 경로 다음인자는 복사되어지는 위치 그리고 마지막 인자는 true를 넣어주세요..ㅋㅋ 다 같이 공유하면서..ㅋㅋㅋ 그럼 수고하세요~~ /// /// Floder Copy /// /// /// /// private void CopyFolder(string szSourceFolderPath, string szDestinationFolderPath, bool bOverwrite) { if (Directory.Exists(szSourceFolderPath)) { if (Directory.Exists(szDestinationFolderPath + "\\" + (new DirectoryInfo(szSourceFolderPath).Name)) && (!bOverwr..

    C# 텍스트파일 라인 읽어들이기

    StreamReader sr = new StreamReader( "aaa.txt", Encoding.Default ); while( sr.Peek() > 0 ) { string temp = sr.ReadLine(); string data = temp.SubString( 0, 6 ); string data2 = temp.SubString( 6, 10 ); } sr.Close(); 아직 테스트는 못 해봤다 -_-;;