2013-12-20 7 views
0

WCF 서비스 응용 프로그램에서 작업하고 있습니다. 내 기능 중 하나에서 파일을 만들고 싶습니다 그래서 이번에는 이렇게하고 있습니다. 먼저 디렉토리로 이동하여 파일을 만든 다음 읽기/쓰기를 수행합니다.Windows의 WCF 서비스 응용 프로그램에서 파일을 만드는 방법

string path = AppDomain.CurrentDomain.BaseDirectory; 
path += "Emp_data\\json_data.json"; 
StreamReader reader = new StreamReader(path); 
StreamWriter writer = new StreamWriter(path); 

내가 잘못하고있는 것을 알고 있습니다. 파일과 폴더가 없으면 자동으로 생성되므로 더 나은 방법을 제안하십시오.

+0

처럼 그렇게 할 수 WCF에서 파일을 만드는 일이 없다 모든 예외/오류 메시지? 또한 "+ ="대신 Path.Combine을 사용해야합니다 – JeffRSon

+0

경로와 혼동하지 않습니다. 파일을 만들고 싶습니다.'StreamReader/StreamWriter'는 그것을 할 수 없습니다. 나는 내 길을 확신한다. –

+0

다시 - 모든 예외/오류 메시지? – JeffRSon

답변

1

것도 그래서 당신이

string path = AppDomain.CurrentDomain.BaseDirectory; 
String dir = Path.GetDirectoryName(path); 
dir += "\\Emp_data"; 
string filename = dir+"\\Json_data.json"; 
if (!Directory.Exists(dir)) 
    Directory.CreateDirectory(dir); // inside the if statement 
FileStream fs = File.Open(filename,FileMode.OpenOrCreate, FileAccess.ReadWrite); 
StreamReader reader = new StreamReader(fs); 
0

귀하의 문제는 일반적으로 WCF 서비스와 관련이 없습니다. (파일에 대한 쓰기 액세스 권한이있는 경우)이 같은

뭔가 작동합니다

String dir = Path.GetDirectoryName(path); 
if (!Directory.Exists(dir)) 
    Directory.CreateDirectory(dir) 

using (FileStream fs = File.Open(path, FileMode.OpenOrCreate, FileAccess.ReadWrite)) 
{ 
    // work with fs to read from and/or write to file, maybe this 
    using (StreamReader reader = new StreamReader(fs)) 
    { 
    using (StreamWriter writer = new StreamWriter(fs)) 
    { 
     // need to sync read and write somehow 
    } 
    } 
} 
+0

읽기 및 쓰기 동기화 방법? –

+0

응용 프로그램 논리에 따라 다릅니다. 일반적으로 순차적으로 처리합니다. – JeffRSon

1

파일을 만들기 WCF과는 아무 상관이 없습니다. 그렇게하는 것은 컨텍스트에 관계없이 동일합니다. 필자는 정적 File 클래스에서 메서드를 사용하는 것을 선호합니다.

파일을 만드는 방법은 간단합니다. 추가

string path = AppDomain.CurrentDomain.BaseDirectory; 
path += "Emp_data\\json_data.json"; 
using(FileStream fs = System.IO.File.Create(path)) 
{ 
} 

당신은 단지 데이터를 기록 할 경우, 당신이 할 수있는 ...

File.WriteAllText(path, contentsIWantToWrite);