Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了一个命令cp /vol/examples/tutorial/science.txt .,但我得到了错误 -
cp /vol/examples/tutorial/science.txt .
cp:无法统计`/vol/examples/tutorial/science.txt':没有这样的文件或目录
我不明白为什么会这样。我去了 cygwin 主文件夹并创建了必要的文件夹结构和文本文件。我还检查了文件夹结构和名称。那么,为什么它不起作用?
你说你
转到cygwin主文件夹并创建必要的文件夹结构和文本文件
因此,您尝试复制的文件不在/vol/examples/tutorial/. 是 cygwin 主目录的缩写,通常是.~/vol/examples/tutorial/~/home/<username>
/vol/examples/tutorial/
~/vol/examples/tutorial/
~
/home/<username>
您应该能够像 user000001 所说的那样复制文件:cp ~/vol/examples/tutorial/science.txt .
cp ~/vol/examples/tutorial/science.txt .