我有一个包含 3 个目录(bin、demo 和 resources)的项目。我有一个由 pyinstaller 创建的 exe 文件(这是一个 GUI 脚本),其中包含指向其他两个文件夹(演示和源)中的一些文件的链接。我只想创建一个快捷方式,从与演示和源文件夹位于同一文件夹中的快捷方式启动 exe 文件。
我不确定我应该使用符号链接还是硬链接所以请告诉我是否错了
这里是文件树:
|
|__bin
| __exe file
|
|__demo
| __[file needed for the exe file ...]
|__sources
| __......Other files
|
|__{exe file} the shortcut i want to create
我尝试过ln file.exe ../fileshortcut
,但点击后没有弹出任何内容。
答案1
使用符号链接尝试一下:
cd 到您的演示目录中
ln -s ../bin/file.exe fileshortcut
您应该能够点击您的链接。还要确保您的 file.exe 是可执行的。
chmod +x file.exe