我必须指定一个文件路径。我得到一个FileNotFoundException,但我不知道我的文件路径有什么问题。
在这里。它在bundle.properties文件中指定:
import glob
read_files = filter(lambda f: f!='final.txt' and f!='result.txt', glob.glob('*.txt'))
with open("REGEXES.rx.txt", "wb") as outfile:
for f in read_files:
with open(f, "rb") as infile:
outfile.write(infile.read())
outfile.write(b'|')
例外:
org_netbeans_modules_autoupdate_silentupdate_update_center=file:/Users/Jesper/Desktop/netbeans_site/updates.xml"
最后一部分的翻译:“文件名,文件夹或diskunitname中的语法错误”。
我需要它找到的文件名为“updates.xml”,位于我的桌面上名为“netbeans_site”的文件夹中。
答案 0 :(得分:0)
就像我在评论中发帖一样......问题是路径中的引号