Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

Create-Directory

Ensures that a subdirectory exists in a ProGet Asset Directory.

Script usage:

ProGet::Create-Directory(
	Path: <text>,
	[Source: <text>],
	[Resource: <text>],
	[EndpointUrl: <text>],
	[ApiKey: <text>],
	[UserName: <text>],
	[Password: <text>]
);

Arguments:

NameFormatScript UsageUsage Notes
Path (default)
text
Path
This argument is required.
Source
text
Source
Secure resource (legacy)
text
Resource
API endpoint URL
text
EndpointUrl
API key
text
ApiKey
User name
text
UserName
Password
text
Password

Example:


# ensures that the my/folder/path directory exists in the ProGet Asset Directory specified by the MyAssetDirResource secure resource
ProGet::Create-Directory my/folder/path
(
    Resource: MyAssetDirResource
);