FTP

포스트: 14|아이템:FTP(9)
Tags

Posts

14 posts

iis6 FTP 서버 passive모드 포트 열기(windows 2003 server)

indes's work place|2017년 8월 1일

1. Open the Control Panel and activate the Windows Firewall control.2. Click on the Advanced tab, select the network interface that the FTP is bound to and make sure that this option is checked to enable the firewall for this interface. 3. Click on the "Settings..." button.4. Click on the Services tab and CLEAR the check box for the "FTP Server" option. I know this makes no sense, but neither does

C# - FileStream 다룰 때, 한글 관련 팁

이것저것|2017년 2월 23일

파일을 다룰 때, 한글이 깨지는 현상이 종종 발생합니다. 구글 어스의 Kml 파일을 예로 들어보죠. 1234567FileStream Stream = new FileStream(@"C:\test.kml", FileMode.Open, FileAccess.ReadWrite);StreamReader Reader = new StreamReader(Stream, Encoding.Default, true); String getReader = Reader.ReadToEnd(); byte[] b = System.Text.Encoding.Default.GetBytes(getReader);Stream.Write(b, 0, getReader.Length);Colored by Color Scriptercs 중요한 건 빨간