powershell批量创建文件
时间: 2024-07-20 15:00:48 浏览: 129
PowerShell实现批量重命名文件
PowerShell 提供了强大的脚本能力,可以用来批量创建文件。以下是一个基本的示例,展示如何使用 PowerShell 来批量创建指定名称和内容的文本文件:
```powershell
# 定义要创建的文件列表
$filesToCreate = @(
"file1.txt",
"file2.txt",
"file3.txt"
)
# 指定文件的内容(这里以简单的文本为例)
$fileContent = "This is the content of the file."
# 遍历文件列表并创建文件
foreach ($file in $filesToCreate) {
# 使用 -Force 参数覆盖已存在的文件
New-Item -ItemType File -Path $file -Content $fileContent -Force
}
#
阅读全文