这是关于在 Powershell 中复制和传输
This is regarding copying and transferring in Powershell
在 Powershell 上使用 (cp) 传输文件时遇到问题。我无法从(例如:桌面文件到临时文件)传输。有什么想法吗?
这样做就可以了:
cp $userprofile\desktop\your_file $temp
将 your_file 替换为您文件的名称(必要时包括通配符)。
在 Powershell 上使用 (cp) 传输文件时遇到问题。我无法从(例如:桌面文件到临时文件)传输。有什么想法吗?
这样做就可以了:
cp $userprofile\desktop\your_file $temp
将 your_file 替换为您文件的名称(必要时包括通配符)。