내 프로젝트에서는 파일이있는 폴더를 추가했습니다. 그들은 모두 로컬 경로가 있습니다.
그 모든 파일에 대한 모든 경로가 포함 된 문자열 배열을 갖고 싶지만 그 방법을 찾을 방법이 없습니다.
이것을 시도했지만 "namespace + project + foldername + name"형식의 문자열 만 반환합니다.
string[] test = Assembly.GetExecutingAssembly().GetManifestResourceNames();
내가 원하는 것은 완전한 길이다.
D : \ Projectname \ Project \ Folder \ file.ext
그것은 또한 다음 파일을 얻을 수 있기 때문에 폴더에 대한 참조 / 경로를 얻는 데 도움이됩니다.
System.IO.Directory.GetFiles();
누구나 아이디어 있어요?
이 시도.
string path= Path.GetDirectoryName(Path.GetDirectoryName(System.IO.Directory.GetCurrentDirectory()));
이 시도
string[] files= Directory.GetFiles(@"directory");
프로젝트 디렉토리 사용을 원한다면
string path = Directory.GetCurrentDirectory();