文件的无效路径

时间:2019-12-03 17:15:49

标签: oracle plsql utl-file

我正在TOAD中测试以下代码。


create directory test_dir AS 'c:\';
DECLARE
  fileHandler UTL_FILE.FILE_TYPE;
BEGIN
  fileHandler := UTL_FILE.FOPEN('test_dir', 'test_file.txt', 'W');
  UTL_FILE.PUTF(fileHandler, 'Test writing to a file.\n');
  UTL_FILE.FCLOSE(fileHandler);
EXCEPTION
  WHEN utl_file.invalid_path THEN
     raise_application_error(-20000, 'ERROR: Invalid PATH FOR file.');
END;  

它返回以下错误:

Error at line 1
ORA-20000: ERROR: Invalid PATH FOR file.
ORA-06512: at line 9

有人可以告诉我如何解决此错误吗?非常感谢!

0 个答案:

没有答案