Hi all,
小弟目前遇到開啟檔案會失敗的問題
希望各位幫忙看看
1.
我在路徑 /root/home/ 下寫了一隻程式 test01.py
開啟/root/home/ 的檔案 my_data.txt
with open("my_data.txt", "r") as my_file:
這邊能成功讀寫
2.
接著在 /root/home/Desktop 下建立捷徑到 /root/home/test01.py
#ln -s /root/home/test01.py or
#ln /root/home/test01.py
在/root/home/Desktop執行捷徑檔
#python test01.py
會出現找不到 my_data.txt 的錯誤
不曉得 要用什麼function/api 才能讓捷徑檔能正確找到要開啟的檔案?