Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- exifread
- swift
- StreamReader
- 딴지일보 자유게시판 파씽
- EXIF data
- MDB
- 스위프트
- 엑셀
- 대전 업힐
- swift html parser
- python
- C#
- VBA
- html parser
- dataset
- kanna html parser
- 자전거
- file move
- 노은
- mdb table 합치기
- 달력
- euc-kr
- 유성
- 대전
- kanna parser
- Xcode
- Exif
- 파이썬
- 대전 자전거
- insert into
Archives
- Today
- Total
Fly to the sky & Return
text file에 쓰기 & 읽기 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
1
2
3
4
5
6
7
|
if (printDialog1.ShowDialog() == DialogResult.OK)
{
label7.Text = printDialog1.PrinterSettings.PrinterName.ToString();
StreamWriter sw = new StreamWriter(destFile1, false);
sw.WriteLine(label7.Text);
sw.Close();
}
|
cs |
1
2
3
4
5
6
7
8
|
if (System.IO.File.Exists(destFile2))
{
string line;
System.IO.StreamReader file = new System.IO.StreamReader(destFile2);
line = file.ReadLine();
label9.Text = line;
file.Close();
}
|
cs |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.IO;
namespace FileIOExample
{
class Program
{
static void Main(string[] args)
{
// Write to a text file
string[] lines = { "Line 1", "Line 2", "Line 3" };
File.WriteAllLines("output.txt", lines);
// Read from a text file
string[] readLines = File.ReadAllLines("output.txt");
Console.WriteLine("Contents of the text file:");
foreach (string line in readLines)
{
Console.WriteLine(line);
}
}
}
}
|
cs |
'프로그래밍 > c# & VB 등' 카테고리의 다른 글
website Crawling code for naver.com by c# (0) | 2023.02.16 |
---|---|
Epub reader 만들기 프로젝트..... by c# (0) | 2023.02.12 |
자식 form이 열려있는지 확인하는 코드 (0) | 2023.02.03 |
c# tabcontrol 상에서 function key 분배하기 (0) | 2020.02.27 |
C# 라벨 프린터 출력을 위한 준비 (0) | 2019.01.21 |