3

次のように、ファイルをWebクライアントとのSharePointにアップロードできます

using (System.Net.WebClient webclient = new System.Net.WebClient())
{
    System.Net.NetworkCredential credentials = new System.Net.NetworkCredential(
                    Encryptor.Decrypt(ConfigurationManager.AppSettings["username"]),
                    Encryptor.Decrypt(ConfigurationManager.AppSettings["password"]),
                    ConfigurationManager.AppSettings["domain"]);
    webclient.Credentials = credentials;

    string path = Path.Combine("http://sharepoint.domain.com/dir", filename);
    webclient.UploadData(path, "PUT", fileBytes);
}

しかし、ディレクトリが存在しない場合、ディレクトリを作成する方法がわかりません。

どうすればそれができるのでしょうか?

ありがとう、-c

4

1 に答える 1