我一直试图在我的快捷应用程序中使用符号链接而没有运气。有什么我可能会遗失或者甚至可以开始吗?
这是我的示例代码,我一直在使用FileKit插件来创建我的符号链接。我也尝试过没有插件但没有运气。
我先试了这个:
return view('sitemap');
我总是收到import FileKit
do {
try Path(Bundle.main.bundlePath + "/wwww/assets").symlinkFile(to: "/assets")
debugPrint("Success")
} catch {
debugPrint("Failed")
}
消息。
我还确保捆绑路径在此测试中有效:
Failed
你们能给我任何指示吗?