我正在使用unoconv将ods电子表格转换为csv file
。
这是命令:
unoconv -vvv --doctype=spreadsheet --format=csv --output= ~/Dropbox
/mariners_site/textFiles/expenses.csv ~/Dropbox/Aldeburgh/expenses
/expenses.ods
它将输出文件保存在与源文件相同的目录中,而不是保存在指定目录中。错误消息是:
Output file: /home/richard/Dropbox/mariners_site/textFiles/expenses.csv
unoconv: UnoException during export phase:
Unable to store document to file:///home/richard/Dropbox/mariners_site
/textFiles/expenses.csv (ErrCode 19468)
我确信这最初是有效的,但它已经停止了。
我已检查过权限,两个目录的权限相同。
答案 0 :(得分:0)
我为您翻译了ErrCode 19468 ,归结为 ERRCODE_SFX_DOCUMENTREADONLY 。
您可以从unoconv文档中找到有关LibreOffice ErrCode编号具体含义的更多信息:https://github.com/dagwieers/unoconv/blob/master/doc/errcode.adoc
这里的线索是你在 - output = 和文件名之间有一个空白字符( - output =〜/ Dropbox /mariners_site/textFiles/expenses.csv)因为unoconv得到一个空的输出值(这意味着当前目录),并给出了2个文件。这就解释了为什么你会得到这个特定的错误IMO