I want to create a temporary folder in my local system and upload file into that particular folder as ZIP.
Note: the file path is getting from SharePoint document library
Thanks in advance
I want to create a temporary folder in my local system and upload file into that particular folder as ZIP.
Note: the file path is getting from SharePoint document library
Thanks in advance
This will create a temporary directory:
string tempDirectory = Path.Combine(Path.GetTempPath(), Path.GetRandomFileName());
Directory.CreateDirectory(tempDirectory);