首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >无法使用export-csv创建的行i csv

无法使用export-csv创建的行i csv
EN

Stack Overflow用户
提问于 2021-09-19 11:24:53
回答 1查看 21关注 0票数 0

运行此脚本后:

代码语言:javascript
复制
# Input path
$input_path = 'C:\Users\larry\Pictures\2003'

# Export file
$documents_export_file = 'C:\Users\larry\Documents\Temp\ffmpeg\fullnames.csv'

# Copy-to folder
$copy_to = "C:\Users\larry\Documents\Temp\ffmpeg\movies"


# List filenames in $documents_export_file
Get-ChildItem -Attributes !Directory -Path $input_path -Recurse -force | select-object -Property fullName | Export-Csv $documents_export_file

# Copy the files listed in $documents_export_file to $copy_to folder
get-content $documents_export_file | Foreach-Object { copy-item -Path $_ -Destination $copy_to}

我得到以下错误:

代码语言:javascript
复制
copy-item : Cannot find drive. A drive with the name '"C' does not exist.
At line:18 char:55
+ ... ort_file | Foreach-Object { copy-item -Path $_ -Destination $copy_to}
+                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: ("C:String) [Copy-Item], DriveNotFoundException
    + FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.CopyItemCommand
 
copy-item : Cannot find drive. A drive with the name '"C' does not exist.
At line:18 char:55
+ ... ort_file | Foreach-Object { copy-item -Path $_ -Destination $copy_to}
+                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: ("C:String) [Copy-Item], DriveNotFoundException
    + FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.CopyItemCommand

据我所知,这与我的Export-Csv有关,但我搞不清楚。请帮我一把。

EN

回答 1

Stack Overflow用户

发布于 2021-09-19 12:03:45

首先不需要将文件列表导出到CSV,而是将Get-ChildItem的输出赋给一个变量,然后通过管道将内容直接传递给Copy-Item

代码语言:javascript
复制
$files = Get-ChildItem -Attributes !Directory -Path $input_path -Recurse -Force

$files |Copy-Item -Destination $copy_to
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/69242780

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档