問題敘述
我的軟體環境為: LabVIEW 2019 SP1 64-bit 和 Python 3.6.7 64-bit。
當我嘗試使用Python腳本進行讀寫檔案動作時,例如:
def file():
f=open("filename.txt",'w')
f.write('hi')
f.write('hi2')
f.close()
f=open("d:filename.txt",'r')
a=f.read()
f.close()
return a
我在LabVIEW中收到1671錯誤碼:
Python Node in LV64 - Python.vi<APPEND>
Module Path: D:\..\Data\MyPython\LV2019_Classes\
Files.y
Function Name: file
Python returned the following error: <class 'PermissionError'>
[Errno 13] Permisission denied: 'filename.txt'