Ensures that the folders needed to upload the given file URIs exist on the remote server.

Namespace: W3CValidationTasks.Core
Assembly: W3CValidationTasks.Core (in W3CValidationTasks.Core.dll) Version: 1.1.1.40

Collapse imageSyntax

C#
public void EnsureFolders(
	IEnumerable<string> remoteFileUris
)
Visual Basic
Public Sub EnsureFolders ( _
	remoteFileUris As IEnumerable(Of String) _
)
Visual C++
public:
void EnsureFolders(
	IEnumerable<String^>^ remoteFileUris
)

Parameters

remoteFileUris
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'String>)>)>
A collection of file URIs.

Collapse imageRemarks

This method attempts to create every folder and supresses all exceptions during that process.

Collapse imageSee Also