如何使用c#在本地系统中创建临时文件夹

时间:2017-03-22 13:00:17

标签: c# sharepoint-2013

我想在本地系统中创建一个临时文件夹,并将文件作为ZIP上传到该特定文件夹中。

注意:文件路径来自SharePoint文档库

提前致谢

1 个答案:

答案 0 :(得分:2)

这将创建一个临时目录:

   string tempDirectory = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
   Directory.CreateDirectory(tempDirectory);