我有:
我有一些文件夹,比如 C:\foo 我想挂载为驱动器 M:\
在 linux 中,我会使用绑定安装来完成此操作。
只需键入“cmd”即可将其保留在同一窗口中。我还想做“cmd / c 命令”并让它在单独的窗口中运行。
PS C:\> cmd /c mklink /d testlink non-existent-dir
symbolic link created for testlink <<===>> non-existent-dir
PS C:\> rm .\testlink
Remove-Item : C:\testlink is a NTFS junction point. Use the Force parameter to delete or modify.
At line:1 char:3
+ rm <<<< .\testlink
+ CategoryInfo : WriteError: (C:\testlink:DirectoryInfo) [Remove-Item], IOException
+ FullyQualifiedErrorId : DirectoryNotEmpty,Microsoft.PowerShell.Commands.RemoveItemCommand
PS C:\> rm -force .\testlink
Remove-Item : Could not find a part of the path 'C:\testlink'.
At line:1 char:3
+ rm <<<< -force .\testlink
+ CategoryInfo : …Run Code Online (Sandbox Code Playgroud) 我的担忧。与没有经验的开发人员职位相比,它的薪酬通常似乎不高。似乎也有很多人没有进入体面的薪酬工作。什么是好的路线,值得吗?
我只想要一个相当于“mv dir target”的东西,并将dir移动到target\dir。