根据 CSV 中的值创建文件夹
我正在开发一个更大的脚本解决方案的一小部分,其中我需要根据 CSV 中存储的值创建文件夹,然后根据 csv 列中的值将适用的文件移动到新文件夹中。
CSV 的格式:
fileName, folder
AC002 Y
AC034 Y
AC001
X2400 Y
AC006
AC007
AC009 Y
这是我解决问题的代码:
$sourceDir = read-host "Please enter source Dir:"
$csv = import-csv C:\scripts\files\files.csv
$csv | where {$_.folder -eq 'Y'} | % {
$path = $sourceDir + "\" + $_.fileName
if(-not (Test-Path $path))
{
md $path
}#end if
}#end for
下一步可能会更棘手。
感谢 Shay Levy 的帮助, 克雷格
I am working on a small portion of a larger scripting solution in which i need to create folders based on values stored in a CSV and then move the applicable files in to the new folder according to values in a column of the csv.
The format of the CSV:
fileName, folder
AC002 Y
AC034 Y
AC001
X2400 Y
AC006
AC007
AC009 Y
This is the code I have working for the problem:
$sourceDir = read-host "Please enter source Dir:"
$csv = import-csv C:\scripts\files\files.csv
$csv | where {$_.folder -eq 'Y'} | % {
$path = $sourceDir + "\" + $_.fileName
if(-not (Test-Path $path))
{
md $path
}#end if
}#end for
The next step will probably be a bit more tricky.
Thanks to Shay Levy for the help,
Craig
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个,即使该文件夹存在,它也会创建该文件夹。如果您愿意,我们可以更改它并仅创建不存在的文件夹:
Try this, it will create the folder even if it exists. We can change that if you want and create only folders that do not exist: