仮想ディレクトリでDirectoryListを使用して、ファイルのリストを作成しようとしています。ただし、エラーが発生します。
URIはサポートされていません
URLをサポートするこれに代わるものはありますか?これがこれまでの私のコードです.....
DirectoryInfo directoryinfo = new DirectoryInfo("http://localhost:1080/mydatafolder");
IEnumerable<FileInfo> fileList = directoryinfo.GetFiles();
As double check, I've made sure the directory browsing has been turned on, and I can surf to it using Opera.