namespace SabreTools.Data.Models.WiseInstaller.Actions { /// /// Create Directory /// /// Directories are created when files are installed to them. Use this action only to create an /// empty directory on the destination computer. /// /// When a WiseScript is called by a Windows Installer installation, you also can create a /// directory on the Features or Components tabs of Setup Editor in Windows Installer /// Editor. /// /// /// public class CreateDirectory : MachineStateData { /// /// Pathname of the directory to create /// /// Should start with a variable public string? Pathname { get; set; } } }