Powershell - 创建文件夹

cmdlet

New-Item cmdlet 用于通过使用 -Path 作为目录路径和 -ItemType 作为目录传递路径来创建目录。

示例

在此示例中,我们将在 D:\Temp\ 中创建一个名为"Test Folder"的文件夹

在 PowerShell ISE 控制台中键入以下命令

New-Item -Path 'D:\temp\Test Folder' -ItemType Directory

输出

您将看到以下输出。

Directory: D:\temp

Mode                LastWriteTime     Length Name                                               
----                -------------     ------ ----                                               
d----          4/3/2018   7:06 PM            Test Folder   

您可以在 Windows 资源管理器中看到相同的内容,其中在 D:/temp 文件夹中创建了"Test Folder"。

❮ powershell_files_folders.html